// 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");
}

function openPrint(path)
{
	window.print();
}

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