/*Type : PageAuteur : patrice@zoupi.comVersion : 1inclusion en PHP de msg.inc*/// ---------------------------------- lien confvar chaine;var title;	var ypage;var url;var page_type;var lien;//Open windowvar variation;var zoom;var popup=new Array();	// ---------------------------------- fin lien conf// bloc centrefunction bloccentre_tete() {chaine='<BODY BGCOLOR='+page_fd+' marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 >';return chaine;}function bloccentre_tete_imprim() {chaine='<BODY BGCOLOR='+page_fd+' marginwidth=10 marginheight=10 topmargin=10 leftmargin=10 >';return chaine;}function bloccentre_pied() {chaine='';return chaine;}// ---------------------------------- stylefunction page_css() {	var feuille = 'agent_v3';	chaine='<link rel="stylesheet" href="'+Chemin+'css/'+feuille+'.css">';	return chaine;}function page_css_print() {	var feuille = 'agent_v3_print';	chaine='<link rel="stylesheet" href="'+Chemin+'css/'+feuille+'.css">';	return chaine;}// ---------------------------------- tete pages	function bloc_tete_universel(title,type)	{			chaine ='<TITLE>'+title+'</TITLE>';	//chaine +='<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">';	chaine +='</HEAD>';			switch(type) {	case 'print':	chaine += bloccentre_tete_imprim()+page_css_print();	break;		case 'book':				chaine +='<BODY BGCOLOR='+page_fd+' marginwidth=18 marginheight=18 topmargin=18 leftmargin=18 >';			chaine += page_css();				break;		case 'home':				chaine += bloccentre_tete()+page_css();			chaine +='<table border=0 height=98%>';			chaine +='<tr valign="middle">';			chaine +='<td><IMG SRC="../img_home/spacer.gif" WIDTH=40 HEIGHT=1></td>';			chaine +='<td>';				break;				default:	chaine += bloccentre_tete()+page_css();	break;		}		document.write(chaine);		}// ---------------------------------- fin tete pages// ---------------------------------- pied pages	function bloc_pied_universel(type)	{	chaine ='';		switch(type) {		case 'home':				chaine +='</td></tr>';			chaine +='</table>';	default:	chaine +='';	break;		}		document.write(chaine);	}// ---------------------------------- fin tete pages//*************************************function openwindow(url,nom,dimx,dimy,type) {	//dimy = eval(dimy - parseInt(variation));	popup['default']	= "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+ dimx + ",height=" + dimy;	popup['print']		= "toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=500";    popup['achat']		= "toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=460";			window.open(url,nom,popup[type])}