function OpenImgWindow(path,strImg){
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width-400)/2
		topPos = (screen.height-300)/2
	}else{
		leftPos = (screen.InnerWidth-400)/2
		topPos = (screen.InnerHeight-300)/2
	}
	newWindow = window.open("", "newWin", "toolbar=no,location=no,scrollbars=no,resizable=no,left="+leftPos+",top="+topPos+",width=400,height=300")
	newWindow.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><title>Village Pinoteau<\/title><\/head><body leftmargin=\"0\" topmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" bgcolor=\"#ffffff\">")
	newWindow.document.write("<img src=\""+path+"images_grandes/"+strImg+"\" width=\"400\" height=\"300\" alt=\"Village Pinoteau\" />")
	newWindow.document.write("<\/body><\/html>")
	newWindow.focus();
	newWindow.document.close()
}

function clearFld(fld){
	fld.value= "";
}

