function MessageBox(message) {
	alert(message);
} //end MessageBox
var popUp; 

function OpenImgWin(url, w, h) { 
	windowprops = 'left=100,top=100,scrollbars=no,resizable=no,width='+w+',height='+h+',status=no,location=no,toolbar=no';
	popUp = window.open(url, "popupPage", windowprops);
} //end OpenEditWin

function OpenPrintWin(url, w, h) { 
	windowprops = 'left=100,top=100,scrollbars=yes,resizable=yes,width='+w+',height='+h+',status=yes,location=no,toolbar=no,menubar=yes';
	popUp = window.open(url, "popupPage", windowprops);
	popUp.print();
} //end OpenPrintWin