function OpenWindowImage (url,alt,width,height) {
	//alert ('ok');
	//alert (bigImage);
	if (bigImage != "") bigImage.close();
	var url = url || '';
	var alt = alt || '';
	var width = width || 400;
	var height = height-19 || 400;
	var size = 'width='+width+',height='+height;
	bigImage = window.open('about:blank','winImage',size+'toolbar=no,menubar=no,scrollbars=no,status=no');
	bigImage.document.open();
	bigImage.document.write("<html><head><script>function resize(){");
	bigImage.document.write("self.resizeTo (photo.width+10,photo.height+59); } onload=resize; window.focus();");
	bigImage.document.write("</script><title>"+alt+"</title></head><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0' bgcolor='#ffffff'><img src='"+url+"' alt='"+alt+"' border='0' vspace='0' hspace='0' id='photo'/></body></html>");
	bigImage.document.close();
}