<!--
var OpenWin
function OpenChild(WinURL, Height, Width) {
var WinProp = "toolbar=no,location=no,directories=no,status=no,resizable=yes,menubar=no,scrollbars=yes" 
	WinProp += ",height=" + Height; WinProp += ",width=" + Width; OpenWin=window.open(WinURL,"PopUp",WinProp);
        // OpenWin.focus();
}

function mailpage()
{
mail_str = "mailto:?subject=Check out  " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}

function printpage() {
window.print();  
}
//-->