// JavaScript Document
function doPopUp(url){
  var x       = screen.width;
	var y       = screen.height;
	
  if(x > 799) {
	 x = 1000;
	 y = screen.height - 80;
	}
	parms = new String("scrollbars=yes,resizable=yes,width=" + x + ",height=" + y + ",screenX=0,screenY=0,left=0,top=0");
	window.open(url,"popup",parms);
}
