var window1;
var window2;
function popUp(htmLoc,width,height,theWindow) {
	//window.open(htmLoc, theWindow, 'titlebar=YES,toolbar=NO,width=' + width + ',height=' + height + ',directories=NO,status=YES,scrollbar=no,resizable=YES,menubar=yes');
var winleft = (screen.width / 2) - (width / 2); // center the window right to left
var wintop = (screen.height / 2) - (height / 2); // center the window top to bottom
window.open(htmLoc,"mainwindow","top="+wintop+",left="+winleft+",width="+width+",height="+height+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no");//YesorNo				
}
// END SCRIPT -->
