function LargePics(img,title2,w,h){
foto1= new Image()
foto1.src=(img)
var output="<HTML><HEAD><title>"+title2+"</title></HEAD><BODY bgcolor=white><CENTER>"
output+="<IMG SRC='"+img+"' width="+w+" height="+h+" border=0>"
output+="<FORM><INPUT TYPE='button' VALUE='Close' onClick='self.close()'>"
output+="</FORM></CENTER></BODY></HTML>"
w+=40
h+=80
newWind=window.open("","","width="+w+",height="+h)
newWind.document.write(output)
newWind.document.close()
newWind.focus()
}
