function load(id, tooltip, shadow){
	var url = 'load_file_ajax.php';	  
	jq.ajax({
		type: 'POST',
		url:  url,
		data: 'file=mail_reload/mailaufruf&id='+id+'&tooltip='+tooltip+'&shadow='+shadow,
		success: function(response) {
			jq('#mailshow').html(response);
		}
	});
}

function mail_shadow(){
    Shadowbox.open({
        content:    'mail.php',
        player:     "iframe"
    });
}
