// JavaScript Document

function mailpage()
{
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= I recommend you read this -- " + document.title;
  mail_str += ". You should check this out at, " + location.href; 
  location.href = mail_str;
}

function printpage()
{
  window.print();
}


function openWin(url)
{
	window.open(url,'','toolbar=no,scrollbars,resizable,outerWidth=800,outerHeight=600');
}

function openNote(url)
{
	window.open(url,'','toolbar=no,scrollbars,resizable,width=550,height=400'); //outerWidth=200,outerHeight=250
}

function closeWin()
{
	window.close();
}
