// JavaScript Document

   if (window.name=='print') {
		document.write('<link id="stylesheet" href="print.css" rel="stylesheet" type="text/css">');
	} else {
		document.write('<link id="stylesheet" href="view.css" rel="stylesheet" type="text/css">');
	} // end if

	function print_this_page() {
		 if (printwin) {
		 	printwin.close();
		 } // end if
		 var printwin = window.open(document.location, 'print', 'width=530,height=600,toolbar=yes,menubar=yes,scrollbars=yes');
	} // end if
	
	function print_me () {
		if (window.name=='print') {
			//window.document.getElementById('stylesheet').href="print.css";
			window.focus();
			window.print();
		} // end if
		
	}


