<!--
function dressUp(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="fixed")
    var strWidth=760;
    var strHeight=510;
   strOptions="top=100,left=200,resizable=0,width="+strWidth+",height="+strHeight;

newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}

// -->