// Enter Javascript here
function openPrint(path)
{
	window.open(path,"print","width=500,height=600,scrollbars=yes,toolbar=yes");
}

function openMail(path)
{
	window.open(path,"mail","width=500,height=400");
}

if(top!=self)
  top.location=self.location;
