// JavaScript Document



function SquelettePage() {	
	
	this.flags = 'i'; 

	this.zone_logo_hauteur = 50;

	this.colonne_1_largeur = 200;
	this.colonne_2_marge   = '15px';
	this.exp_logo = '';

	
	// INITIALISATION DU SQUELETTE
	this.SquelettePage_CSS = function() {
		document.write('<style type="text/css"><!-- #cyberfoot_td { margin-top: '+this.colonne_2_marge+'; margin-left: '+this.colonne_2_marge+'; margin-right: '+this.colonne_2_marge +'; } --></style>');
	};
	
	
	this.SquelettePage_Width = function() {
	};

	// INITIALISATION DU SQUELETTE
	this.SquelettePage_Zone = function(numzone) {
		switch (numzone) {
			case 1 : 
				this.SquelettePage_CSS();
				document.write('<a name="TOP_PAGE"></a>');
				document.write('<table width="100%" height="500px" border="0" align="center" cellspacing="0" cellpadding="0">');
				document.write('<tr height="'+this.zone_logo_hauteur+'">');
				document.write('<td width="'+this.colonne_1_largeur+'" bgcolor="#FFFFFF" scope="col" nowrap>');
				document.write(this.exp_logo+'</td>');
				document.write('<td width="*" align="right" valign="bottom" bgcolor="#FFFFFF">');
				break;

			case 2 : 
				document.write('</td></tr>');
				document.write('<tr  height="24px" id="cyberfoot_zonefondmenu" valign="bottom"><td></td>');
				document.write('<td>&nbsp;</td></tr>');
 				document.write('<tr height="23px" valign="top">');
 				document.write('<td colspan="2" id="cyberfoot_zonefondmenu">');
				break;

			case 3 : // DEBUT DE LA ZONE PUB
				document.write('</td></tr>');
				document.write('<tr height="1000px"><td id="cyberfoot_zonepub" valign="top">');
				break;

			case 4 : 
				document.write('</td><td valign="top"><div id="cyberfoot_td">');
				break;
				
				// LA ZONE DE DONNEES SE SITUE ICI

			case 5 : 
				document.write('</div></td></tr></table>');
				break;




		}
	}

} // fin de classe
