// ver. 1.4

function annee(){
	TheDate=new Date();
	annee_now=parseInt(TheDate.getYear());

	if(annee_now<200 && annee_now>99) annee_now+=1900;
	if(annee_now<100 && annee_now>80) annee_now+=1900;
	if(annee_now<=80) annee_now+=2000;

//	annee_now='-'+annee_now;
//	document.write(annee_now);
	return(annee_now);
}

function showhide(id){
	if(document.getElementById){
		if(document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = "block";
		} else {
			document.getElementById(id).style.display = "none";
		}
	}
}

/* Open Picture Window based on ald-openpicturewindow */
function showPhoto(theURL, winName)
{
	var ald_opw = null;
	var settings;
//	if(!myWidth) myWidth = 670;
//	if(!myHeight) myHeight = 670;
	var myWidth = 670;
	var myHeight = 670;
	settings = ',"toolbar=0,menubar=0,location=0,directories=0,status=1,width='+myWidth+',height='+myHeight+',scrollbars=yes,resizable=yes,alwaysRaised"';

	var myTitle = "CEDO";

//	if(features!='') settings +=','+features;	// add features passed as argument

	ald_opw = window.open('',winName,settings);
	with (ald_opw.document)
	{
		open('text/html', 'replace');
		write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
		write('<html>\n');
		write('<head><title>');
		write(myTitle);
		write('</title>\n');
		write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n');
		write('<meta http-equiv="imagetoolbar" content="no">\n');
		write('<script type="text/javascript">\n');
		write('self.focus()\n');
		write('</script>\n');
		write('</head>\n');
		write('<body style="border:0;margin:0">\n');
		write('<table border="0" cellpadding="0" width="100%" height="97%" style="height:97%;width:100%;"><tr><td align="center" valign="middle">\n');
		write('<img src="'+ theURL +'" ');
		write('title="'+ myTitle +'" alt="'+ myTitle +'"');
		write('>\n');
		write('</td></tr></table>\n');
		write('</body></html>\n');
		close();
	}

}

