function openDescWindow(image,text)

	{
	
		smallwin = window.open("","","width=740,height=630,left=50,top=50");
		
		smallwin.document.write('<table border="1" width="700" id="table1" height="550">');
		smallwin.document.write('<tr><td><div align="center"><table border="0" width="680" id="table2" cellpadding="4" height="530">');
		smallwin.document.write('<tr><td valign="top"><img border="0" src="' + image + '" width="665" height="396"></td>');
		smallwin.document.write('</tr><tr><td height="82" valign="top"><font face="Arial" size="2" color="#000080">');
		
		smallwin.document.write(text);
		
		smallwin.document.write('</font></td></tr><tr><td height="30"><p align="center"><font face="Arial" size="2">');
		
		smallwin.document.write ("<p align=center> <a href='' onMouseOver='self.close()'>Roll over to close.</a></p>");
		smallwin.document.write('</font></td></tr></table></div></td></tr></table>');

	
	}

	
