function init() {
   NN = (document.layers)?1:0;
   IE = (document.all)?1:0;
   NN6 = (document.getElementById)?1:0;
   NN6 = (IE)?0:NN6;
}

function ShowEasyWin (cURL,nX,nY) {
   posX = Math.round ((screen.width - nX) / 2);
   posY = Math.round ((screen.height - nY - 30) / 2);
   XYCode = (NN)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
   pictWindow = window.open (cURL, "Picture", "resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no,width="+nX+",height="+nY+"," + XYCode);
   pictWindow.focus ();
   void (0);
}
function ShowNewWin (cURL,cID,nX,nY) {
   posX = Math.round ((screen.width - nX) / 2);
   posY = Math.round ((screen.height - nY - 30) / 2);
   XYCode = (NN)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
   pictWindow = window.open (cURL, cID, "resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no,width="+nX+",height="+nY+"," + XYCode);
   pictWindow.focus ();
   void (0);
}
