	<!--Hide From Older Browsers

	function PrintForm()
	{
	    window.focus();
		window.print();
	}
	DA = (document.all) ? 1 : 0
	//window.onerror=handle_error

	function handle_error()
	{
        //alert("\nNothing was printed. \n\nIf you do want to print this page, then\nclick on the printer icon in the toolbar above.")
        // to cancel the script error warning
        return true;
	}

	function clipit() {
		var txtLink;
		txtLink=hidLink.createTextRange()
		txtLink.execCommand("Copy")
		alert("The link to this document is now ready to be pasted!");
	}

	function createclip() {
		document.write("<TEXTAREA style='visibility:hidden;width 0;height 0' name=hidLink width=0 height=0>");
		document.write(document.location.href);
		document.write("</TEXTAREA>");	
	}
	//-->