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

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