var newWin = null;
function popUp(strURL, strManu, strUniqueName, strType, strHeight, strWidth) {

 if (newWin != null && !newWin.closed)
   newWin.close();
  strURL="";
 var strOptions="";
 if (strType=="console")
   strOptions="resizable,height="+
     strHeight+",width="+strWidth;
 if (strType=="fixed")
   strOptions="status,height="+
     strHeight+",width="+strWidth;
 if (strType=="elastic")
   strOptions="toolbar,menubar,scrollbars,"+
     "resizable,location,height="+
     strHeight+",width="+strWidth;
    
 newWin = window.open("", strUniqueName, strOptions);
 newWin.focus();
 var strDocText = "<html><head>";
 strDocText += "<link href=\"assets/css/popup.css\" ";
 strDocText += "rel=\"stylesheet\" type=\"text/css\" />";
 strDocText += "</head><body><img src='assets/images/";
 strDocText += strManu + "/" + strUniqueName + ".jpg' />";
 strDocText += "<p><a href='javascript:window.close();'>Close This Window</a></p></body></html>";

 newWin.document.write(strDocText);
}


