
/* interdit l'exploitation dans une frame ou iframe
if (top.frames.length!=0) {
	top.location="http://www.tendance-peinture.com/info_iframe.php";
}	
*/

function addbookmark()
{
	
	window.external.AddFavorite("http://www.tendance-inox.com","tendance-inox.com");

}

/* Affichage dynamique de l'heure et de la date sur la page */
var dayarray=new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi")
var montharray=new Array("janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre")

function getthedate() {
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()

if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds

var cdate= dayarray[day]+", "+daym+" "+montharray[month]+" "+year+" "+hours+":"+minutes+":"+seconds

if (document.all)
document.all.clock.innerHTML=cdate
else if (document.getElementById)
document.getElementById("clock").innerHTML=cdate
else
document.write(cdate)
}

if (!document.all&&!document.getElementById)
getthedate()

function date_heure() {
if (document.all||document.getElementById)
setInterval("getthedate()",1000)
}

function addbookmark() {	
	window.external.AddFavorite("http://www.tendance-inox.com","Tendance-Inox.com : Une gamme soignée et élaborée de garde-corps et mains courantes en inox de haute qualité à monter soi-même et sans soudure.");
}

function zoom_produit(id)
	{
	var Hauteur = 510;
	var Largeur = 430;	
	var Gauche = (screen.width / 2) - (Largeur / 2);
	var Haut = (screen.height / 2) - (Hauteur / 2);	
	
	NewWindow=open("zoom_produit.php?id="+id,"zoom_produit","menubar=no,resizable=no,scrollbars=no,status=no,left=" + Gauche + ",top=" + Haut + ",height=" + Hauteur + ",width=" + Largeur + "");
}

function test_saisie(evt) 
{
	var keyCode = evt.which ? evt.which : evt.keyCode;
	if (keyCode==9) return true;
	var accepter = "0123456789";
	if (accepter.indexOf(String.fromCharCode(keyCode)) >= 0) 
	{
		return true;
	}
	else 
	{
		return false;
	}
}

function expandList(id) {
	if (document.getElementById(id).style.display == "")
	{
		document.getElementById(id).style.display = "none";
	}
	else
	{
		document.getElementById(id).style.display = "";
	}
}

function test_search(theForm) { 
	var chaine = theForm.motclef.value;
  if(chaine.length <= 2)
  {
  	alert("Vous devez saisir au moins 3 caracteres dans la zone de recherche.");
  }
  else
  {
      theForm.action += "?motclef=" + theForm.motclef.value;
      theForm.submit();
  }
}

var IB=new Object;
var posX=0;
var posY=0;
var xOffset=0;
var yOffset=0;
var h=200;
var l=200;
function AffBulle(texte) {
	var theImage = "<img src='"+texte+"' border='0'>";
	//alert(texte);
  contenu="<TABLE border=0 cellspacing=0 cellpadding="+IB.NbPixel+" width="+l+" height="+h+"><TR bgcolor='"+IB.ColContour+"'><TD width="+l+" height="+h+"><TABLE width="+l+" height="+h+" border=0 cellpadding=1 cellspacing=0><TR><TD width="+l+" height="+h+">"+theImage+"</TD></TR></TABLE></TD></TR></TABLE>&nbsp;";

  var finalPosX=posX-xOffset;
  if (finalPosX<0) finalPosX=0;
  if (document.layers) {
    document.layers["bulle"].document.write(contenu);
    document.layers["bulle"].document.close();
    document.layers["bulle"].top=posY+yOffset;
    document.layers["bulle"].left=finalPosX;
    document.layers["bulle"].visibility="show";}
  if (document.all) {
    //var f=window.event;
    //doc=document.body.scrollTop;
    bulle.innerHTML=contenu;
    document.all["bulle"].style.top=posY+yOffset;
    document.all["bulle"].style.left=finalPosX;//f.x-xOffset;
    document.all["bulle"].style.visibility="visible";
  }
  //modif CL 09/2001 - NS6 : celui-ci ne supporte plus document.layers mais document.getElementById
  else if (document.getElementById) {
    document.getElementById("bulle").innerHTML=contenu;
    document.getElementById("bulle").style.top=posY+yOffset;
    document.getElementById("bulle").style.left=finalPosX;
    document.getElementById("bulle").style.visibility="visible";
  }
}

function getMousePos(e) {
  if (document.all) {
 	posX=event.x+document.body.scrollLeft; //modifs CL 09/2001 - IE : regrouper l'évènement
  posY=event.y+document.body.scrollTop;
  }
  else {
  posX=e.pageX; //modifs CL 09/2001 - NS6 : celui-ci ne supporte pas e.x et e.y
  posY=e.pageY; 
  }
 	//posY=10;posX=10; // ditter
  posX=posX-200; posY=posY-255; // ditter
}

function HideBulle() {
	if (document.layers) {document.layers["bulle"].visibility="hide";}
	if (document.all) {document.all["bulle"].style.visibility="hidden";}
	else if (document.getElementById){document.getElementById("bulle").style.visibility="hidden";}
}

function InitBulle(ColTexte,ColFond,ColContour,NbPixel) {
	IB.ColTexte=ColTexte;IB.ColFond=ColFond;IB.ColContour=ColContour;IB.NbPixel=NbPixel;
	if (document.layers) {
		window.captureEvents(Event.MOUSEMOVE);window.onMouseMove=getMousePos;
		document.write("<LAYER name='bulle' top=0 left=0 visibility='hide'></LAYER>");
	}
	if (document.all) {
		document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></DIV>");
		document.onmousemove=getMousePos;
	}
	//modif CL 09/2001 - NS6 : celui-ci ne supporte plus document.layers mais document.getElementById
	else if (document.getElementById) {
	        document.onmousemove=getMousePos;
	        document.write("<DIV id='bulle' style='position:absolute;top:0;left:0;visibility:hidden'></DIV>");
	}

}

