// Enter Javascript here
function openPrint(path)
{
	window.print();
}

function openPagemailer(path)
{
	pagemailer = window.open(path,"mail","width=500,height=400,resizable=no");
	pagemailer.focus();
}

function ShowPicture() 
{ 
 var positionX=((screen.availWidth / 2) - breite / 2); 
 var positionY=((screen.availHeight / 2) - hoehe / 2); 
 if (screen.availWidth <= breite) {
 	 hoehe = hoehe+15;
	 pop=window.open('','picture','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,fullscreen=0,width='+breite+',height='+hoehe+',top=10000,left=10000'); 
 } else {
	 pop=window.open('','picture','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,fullscreen=0,width='+breite+',height='+hoehe+',top=10000,left=10000'); 
 }
 pop.resizeTo(breite,hoehe); 
 pop.moveTo(positionX,positionY); 
 pop.location=url; 
 }
