function MM_openBrWindow(theURL,winName,w,h,scroll)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
pop = window.open(theURL,winName,settings);
pop.document.write('<title>EL-PLUS</title><body bgcolor="#435c8e" topmargin="0" leftmargin="0">');
pop.document.write('<p align=center><a href="javascript:window.close();"><img src="'+theURL+'" alt="close window" border=0></a></p>');
pop.document.write('</body>');
}


function OpenWindow(theURL,winName,w,h,scroll)
{
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
  window.open(theURL,winName,settings);
}

function stat()
{
 window.status="EL-PLUS";
 setTimeout("stat()",0);
}


