function print(url){
	var print = window.open(url, 'print', 'toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=800,height=600');
	print.focus();
}
function doPrint(url) {
window.open("Flash/RadioAndPrint/printPages/workpages.html?"+url,"pop","width=0,height=0,left=2400")
}
if (screen.width <= 800) {
	var ptWidth = 800;
	var ptHeight = 660;
}
else {
	var ptWidth = 800;
	var ptHeight = 660;
}

ptXpos = (screen.width - ptWidth) / 2;

var popUPWindow = false;
function popGame(url){ 
	popUPWindow = window.open(url, 'popup', 'scrollbars=no,resizable=no,width=' + ptWidth + ',height=' + ptHeight);
	if(popUPWindow != null) {
		popUPWindow.resizeTo(ptWidth,ptHeight); 
		popUPWindow.moveTo(ptXpos,0);
		popUPWindow.focus();
		
		
		
	}else{
		alert("You may have your pop up blocker on. Please disable to view this page. Thanks!");
	}
}
