var exiting = 1;

function clickHandler(e) {
    exiting = 0;
    return true;
}

document.onclick = clickHandler;

function PopUp(id,width,height,scroll,AOL) {
	if (exiting == 0) { return; }

	if (AOL != true) {AOL = false; }
	window.onerror = new function(){ return false;}
	if (!document.layers) {
        var xMax = screen.width, yMax = screen.height;
  } else {
      if (document.layers) {
         var xMax = window.outerWidth, yMax = window.outerHeight;        
			}	
	}
  var xOffset = (xMax - width)/2, yOffset = (yMax - height)/2;
	var name = 'PopUp';
	var url = "/popUp.php?id="+id;
	if (!document.layers) {
        var xMax = screen.width, yMax = screen.height;
    } else {
        if (document.layers) {
            var xMax = window.outerWidth, yMax = window.outerHeight;        
		}	
	}
  var xOffset = (xMax - width)/2, yOffset = (yMax - height)/2;
	if (!AOL) {
    PopUp = window.open(url,name,"width="+width+",height="+height+",screenX="+xOffset+",screenY="+yOffset+",top="+yOffset+",left="+xOffset+",scrollbars="+scroll);
	}
	else {
		PopUp = window.open(url,name,"width="+width+",height="+height+",scrollbars="+scroll);
	}
  if (!PopUp.closed) {
    PopUp.focus();
  }
}
