//----------------------------------------------
//TITRE.JS - Gestion titres - © Bruno David 2002
//----------------------------------------------

MessageStatus = new Array();
idMessageStatus = 0;

// récup variable d'identification de la page
rep = '';
switch (idpage) {
	case "accueil":
		rep="";
		break;
	case "historique":
		rep="../";
		break;
	case "technique":
		rep="../";
		break;
	case "creations":
		rep="../";
		break;
	case "renovations":
		rep="../";
		break;
	case "atelier":
		rep="../";
		break;
	case "contact":
		rep="../";
		break;
}

titre1 = "ART-ET-VITRAIL.COM";
titre2 = "Atelier Vitrail d'Art - 34500 Béziers (France)";
MessageStatus[1] = titre1; //'Ce site est actuellement en construction.';
MessageStatus[2] = titre2; //'Certaines fonctions ne sont pas encore disponibles.';
MessageStatus[3] = titre1; //'Merci de votre compréhension.';
MessageStatus[4] = titre2; //'';
nbMessageStatus = 4;

document.title = "ART-ET-VITRAIL.COM";

function BougeTitre() {
t = document.title;
if (t == titre1) {t = titre2;
} else {
t = titre1}
document.title = t;
setTimeout('BougeTitre()',5000)
};

function EcrisStatus() {
idMessageStatus = idMessageStatus + 1;
if (idMessageStatus > nbMessageStatus) {idMessageStatus = 1};
window.status = MessageStatus[idMessageStatus];
setTimeout('EcrisStatus()',2000);
};

function CreeTitre(ct) {
//document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD VALIGN=bottom><P><A HREF="' + rep + 'index.htm"><IMG SRC="' + rep + 'images/titres/vitraildart.jpg" ALT="Retour au sommaire..." WIDTH=240 HEIGHT=60 BORDER=0 ALIGN=bottom></A></P></TD><TD VALIGN=bottom><P><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD><P><A HREF="' + rep + 'index.htm"><IMG SRC="' + rep + 'images/titres/anim_cervelle1.gif" ALT="Retour au sommaire..." WIDTH=60 HEIGHT=50 BORDER=0 ALIGN=bottom></A></P></TD></TR><TR><TD><P><IMG SRC="' + rep + 'images/titres/lignerouge.jpg" WIDTH=120 HEIGHT=10 ALIGN=bottom></P></TD></TR></TABLE></P></TD><TD VALIGN=bottom><P><IMG SRC="' + rep + 'images/titres/' + ct + '.jpg" ALIGN=bottom></P></TD></TR></TABLE>');

document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD VALIGN=bottom><P><A HREF="' + rep + 'index.htm"><IMG SRC="' + rep + 'images/titres/vitraildart.jpg" ALT="Retour au sommaire..." WIDTH=240 HEIGHT=60 BORDER=0 ALIGN=bottom></A></P></TD><TD VALIGN=bottom><P><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD>');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" id="anim_cervelle_AEV1" width="60" height="50">');
document.write('<param name="movie" value="http://www.art-et-vitrail.com/images/anims/anim_cervelle_AEV1.swf">');
document.write('<param name="quality" value="high"> <param name="bgcolor" value="#000000">');
document.write('<embed name="anim_cervelle_AEV1" src="http://www.art-et-vitrail.com/images/anims/anim_cervelle_AEV1.swf" quality="high" bgcolor="#000000" width="60" height="50" type="application/x-shockwave-flash"');
document.write('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </embed></object>');
document.write('</TD></TR><TR><TD><P><IMG SRC="' + rep + 'images/titres/lignerouge.jpg" WIDTH=120 HEIGHT=10 ALIGN=bottom></P></TD></TR></TABLE></P></TD><TD VALIGN=bottom><P><IMG SRC="' + rep + 'images/titres/' + ct + '.jpg" ALIGN=bottom></P></TD></TR></TABLE>');
};

function CreeAdresse() {
document.write('<A HREF="' + rep + 'contact/contact.htm"><IMG SRC="' + rep + 'images/titres/nom.jpg" BORDER=0 ALT="Comment me contacter..." WIDTH=750 HEIGHT=35 ALIGN=bottom></A>');
};

BougeTitre();
EcrisStatus();
