function showImage(img,strTitle)
{
	
	var strHTML="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'" 						  
		strHTML+="'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>"
		strHTML+="<html xmlns='http://www.w3.org/1999/xhtml'>"
		strHTML+="<head>"
		strHTML+="<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' />"
		strHTML+="<title>César Ritz Alumni - Photo Gallery - "+strTitle+"</title>"
		strHTML+="<link href='css/style.css' rel='stylesheet' type='text/css' />"
		strHTML+="</head>"
		strHTML+="<body>"
		strHTML+="<div align='center'>"
  		strHTML+="<table width='540' border='0' cellpadding='0' cellspacing='0' background='images/frame_bg.jpg'>"
    	strHTML+="<tr>"
      	strHTML+="<td><table width='540' border='0' cellspacing='0' cellpadding='0'>"
        strHTML+="<tr>"
        strHTML+="<td height='15' align='center'></td>"
        strHTML+="</tr>"
        strHTML+="<tr>"
        strHTML+="<td align='center'><table width='506' border='3' cellpadding='0' cellspacing='0' bordercolor='#FFFFFF' class='borderthick'>"
         strHTML+="<tr>"
         strHTML+="<td align='center' valign='top'><img src='images/gallary/big/"+img+"' width='500' height='370' /></td>"
         strHTML+="</tr>"
         strHTML+="</table></td>"
        strHTML+="</tr>"
        strHTML+="<tr>"
         strHTML+="<td height='17' align='center'></td>"
        strHTML+="</tr>"
      	strHTML+="</table></td>"
    	strHTML+="</tr>"
  		strHTML+="</table>"
		strHTML+="</div>"
		strHTML+="</body>"
		strHTML+="</html>"
		var w1=window.open("","_blank","width=540,height=405,scrollbar=no")
		w1.document.write(strHTML)
}