function popup(lienimg, w, h){
	var prints="<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>";
		prints+="<html><head><title>Plan</title><style type='text/css' rel='stylesheet'>body{margin:0px;}</style></head>";
		prints+= "<body><img src='" + lienimg + "' alt=plan du site onclick=window.close() /></body></html>";
	
	var f=window.open("","Plan","toolbar=0,menubar=0,location=0,scrollbars=0,width="+w+",height="+h+"");
	f.document.open();
	f.document.write(prints);
	f.document.close();
return false;
}
