/***
 * Pop-up window
 */
var WindowObjectReference = null; // global variable
function openRequestedPopup(strUrl, strWindowName, intWidth, intHeight)
{
  var strOptions = '"width='+intWidth+',height='+intHeight+',menubar=no,toolbar=no,location=no,directories=no,resizable=yes,scrollbars=yes,status=no"';
  WindowObjectReference = window.open(strUrl, strWindowName, strOptions);
    //"dialog,width=820,height=535");
    //"width=1016,height=657,menubar=no,toolbar=no,location=no,directories=no,resizable=yes,scrollbars=no,status=no");
  WindowObjectReference.focus();
} 
