// Generic Pop-up
function popWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Print this Page
function printpage()
{
	if (window.print)
	{
		print();
	}
	else
	{
		alert("Use the Print option under the File menu to print this page.");
		window.open(document.location.href);
	}
}

// View Source Link
function viewsource(){
	window.location = "view-source:" + window.location
}
