/* print */
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();
	}
}

/* popup */
function openwindow(src, winName){
	NewWin=window.open(src,winName,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=800,height=600');
}

