function AXPopup(strURL, intWidth, intHeight, intPosX, intPosY)
{
 var winPopup = new Object;
 
 if(intPosX == undefined) intPosX = (screen.width-intWidth)/2;
 if(intPosY == undefined) intPosY = (screen.height-intHeight)/2; 
 strValue = 'screenX='+ intPosX +', left='+ intPosX +', screenY='+ intPosY +', top='+ intPosY +', width='+ intWidth +', height='+ intHeight +', scrollbars';
 
 winPopup = open(strURL, 'winPopup', strValue); 
 window.onblur = function(){if(!winPopup.closed) winPopup.focus();}  
   
}
