<!--
var currentURL = location.href;
var currentTitle = document.title;
function send_email(){ 
	//window.open("mailto:?subject=Forward%20Wisconsin&body=http%3A//forwardwi.5ninesdata.com/forward_docs/sub.php%3Fsub_id%3D");
	window.open("mailto:?subject=Forward%20Wisconsin&body=" + currentURL);
}
function print_page(){
	var testString;
	testString = currentURL.indexOf("?");
	if(testString > 0){
	hereWindow(currentURL + "&print=1");
	}
	else{
	hereWindow(currentURL + "?print=1");
	}
}
function bookmark_page(){
	window.external.AddFavorite(currentURL, currentTitle);
}
function hereWindow(ref){ 
	var str="toolbar=no,status=no,menubar=no,location=no,scrollbars=yes,resizable=no,left=20,top=20,height=650,width=655";
	var winName; 
	if (winName){winName++ ;}else{winName = 0;}winName = window.open(ref,"TellObj",str);winName.opener = top;
}
-->
