<!--
function myPopup(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="fixed")
    var strWidth=800;
    var strHeight=500;
   strOptions="resizable=yes,top=75,left=100,width="+strWidth+",height="+strHeight;

newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}
// -->