function printerView()
{
	if (location.href.search(/\?/) != -1)
		window.open(location.href + '&printOnly=1','','toolbar=yes,location=no,directories=no,menubar=no,scrollbars=yes,width=700,height=480,resize=yes');
	else
		window.open(location.href + '?printOnly=1','','toolbar=yes,location=no,directories=no,menubar=no,scrollbars=yes,width=700,height=480,resize=yes');
}
      
function mailpage()
{
	mail_str = "mailto:?subject=Thought this might interest you: " + document.title;
    mail_str += "&body=I thought you might be interested in this: " + document.title;
    mail_str += ". %0A%0AYou can view it at, " + location.href; 
	location.href = mail_str;
}
