function openImage(__img,__desc)
{
	var content='';
	content+='<table background="img/big_image_background.jpg " border="0" cellpadding="0" cellspacing="0" width="888" height="703">';
	content+='<tr>';
	content+='<td align="center">';
	content+='<img src="'+__img+'">';
	content+='</td>';
	content+='</tr>';
	content+='</table>';
	hwd=window.open('','','width=1024px,height=768px,status=0,resizable=1,location=0,scrollbars=0');
    hwd.document.write('<html><title>'+__desc+'</title><body bgcolor="#C4A586"; leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0"><center>');
    hwd.document.write(content);
    hwd.document.write('</center></body></html>');
	hwd.document.close();

}
