function openEMail( loc, windowname )
{
pop = window.open('',windowname,'left=75,top=50,screenX=75,screenY=50,width=650,height=500,scrollbars,resizable');
pop.location.href=loc;
if(pop.opener == null) pop.opener = window;
pop.opener.name = "opener";
pop.focus();
}

function openEMail1( loc, windowname, thewidth, theheigth )
{
pop = window.open('',windowname,'left=0,top=75,screenX=0,screenY=75,width=' + thewidth + ',height=' + theheigth + ',scrollbars,resizable');
pop.location.href=loc;
if(pop.opener == null) pop.opener = window;
pop.opener.name = "opener";
pop.focus();
}

function printWindow(){
   version = parseInt(navigator.appVersion)
   if (version >= 4) window.print()
}

