function printWin(url){
	var printWin = window.open (url,"printWin","titlebar=0,toolbar=0,scrollbars=1,menubar=0,status=0,resizable=1,width=400,height=500,location=0,maximize=0");
}

function printInit(){
	window.focus();
	if (navigator.userAgent.indexOf("Mac") > 0) {
		alert ("Click OK, then press COMMAND (APPLE) + P to print this window");
	}else{
		alert ("Click OK, then press CTRL + P to print this window");
	}
}


