



window.name="main";

newWindow = null;

function closewindow()



{  



 if (newWindow && !newWindow.closed)

 

  {

  

 newWindow.close()

  }







  

}

function openwindow2(page)



{





closewindow()



newWindow = window.open('', '', config='height=475,width=450')

newWindow.document.writeln("<style type='text/css'><!--.text {	font-family: Verdana, Arial, Helvetica,sans-serif; font-size: 10px; color:'#666666';}--></style><table width='100%' height='100%'><tr><td align='center' valign='middle'><img src=" + page + ".jpg><br><br><a href='javascript:top.close()' target='_self' class='text'>X close window</a></td></tr></table>")

newWindow.focus()

}


