var SepWin;
function OpenSepWin(url, width, height) {
   if (SepWin) SepWin.close();
   SepWin=window.open (url, 'SepWin', 'width='+width+',height='+height+',resizable=0');
   SepWin.document.open();
   SepWin.document.writeln("<HTML><BODY leftmargin=0 topmargin=0><img src="+url+" width="+width+" height="+height+" border=0></BODY></HTML>");
   SepWin.document.close();
   SepWin.focus();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


