
function Help(TEXTE,taille){
	var lataille = 250;
	if (taille!=null) lataille=taille;
	var HTMl = '<table cellpadding="0" cellspacing="0" border="0" width="'+lataille+'">'+
					'<tr>'+
					'<td width="10"><img src="/climat_images/site/help_hg.gif" width="11" height="11" border="0" alt=""/></td>'+
					'<td background="/climat_images/site/help_h.gif"><img src="/climat_images/site/help_h.gif" width="11" height="11" border="0" alt=""/></td>'+
					'<td width="11"><img src="/climat_images/site/help_hd.gif" width="11" height="11" border="0" alt=""/></td>'+
				'</tr>'+
				'<tr>'+
					'<td style="background:url(/climat_images/site/help_g.gif) top left repeat-y;"></td>'+
					'<td bgcolor="#ffffff";>'+TEXTE+'</td>'+
					'<td style="background:url(/climat_images/site/help_d.gif) top left repeat-y;"></td>'+
				'</tr>'+
				'<tr>'+
					'<td><img src="/climat_images/site/help_bg.gif" width="11" height="11" border="0" alt=""/></td>'+
					'<td background="/climat_images/site/help_b.gif"></td>'+
					'<td><img src="/climat_images/site/help_bd.gif" width="11" height="11" border="0" alt=""/></td>'+
				'</tr>'+
			'</table>';
	return HTMl;
}


var popupImage;
function popupClimatMundi(chemin, titre) {
	var ns=(navigator.appName.indexOf('Netscape') != -1);
	img = new Image;
	img.src = chemin;

	scrollbars='no';
	if(img.width>800 || img.height>800)
		scrollbars='yes';
	
	html = '<html><head><title>'+titre+'</title></head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center>'+
		   '<img src="'+chemin+'" border="0" name="currentImage" onLoad="window.resizeTo(document.currentImage.width+20, document.currentImage.height+64)">'+
		   '</center></body></html>';

	popupImage = window.open('','popupImage','toolbar=no,location=no,directories=no,status=no,menubar=no,titlebar=no, scrollbars='+scrollbars+',resizable=yes,alwaysRaised=yes,z-lock=yes');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	popupImage.focus();
};
