function popUp(URL,title) {
	//menuWindow = window.open(URL + '&_=' + Math.random(),title,"top=0,screenY=0,channelmode=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,width=716,height=800");//16px for Windows scrollbar
	menuWindow = window.open(URL, title, "top=0,screenY=0,channelmode=0,directories=no,fullscreen=no,location=no,menubar=no,resizable=1,scrollbars=1,status=no,titlebar=no,toolbar=no,width=800,height=" + screen.height);//16px for Windows scrollbar, width use to be 716
	menuWindow.moveTo( (screen.width - 800) / 2, 0 );
	if (window.focus) { menuWindow.focus() }
	return false;
}

//	Math.floor(Math.random()*1000)