// Enter Javascript here
function openPrint(path)
{
	window.print();
}

function openPagemailer(path)
{
	pagemailer = window.open(path,"mail","width=600,height=400,resizable=no");
	pagemailer.focus();
}

function openNews(path)
{
	news = window.open(path,"news","width=600,height=400,resizable=no");
	news.focus();
}
