// JavaScript Document
function newWindow( winURL, winName, height,pname ) 
{
  theWin =  window.open( winURL, winName,'width=500,height= ' + height +',scrollbars=yes,resizable=1 ,top=110,left=180')
 theWin.document.write('<body bgcolor="#ffffff">');
   theWin.document.write('<center><br><img src='+winURL+'></center>');

  theWin.document.write('</body><p><b><center><font color="brown" size="3">'+pname+'</font></center></b></p>');

  theWin.focus();
}
