
// BARRE DE TACHE

<!--
window.defaultStatus="TECNOLEC LAVAGES";
//-->


//// empecher la selection du texte sur la page
 
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

//// pas de clik droit


function NoError(){return true;}
window.onerror=NoError;
 
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu() {
    event.cancelBubble = true
    event.returnValue = false;
    return false;
}
 
function norightclick(e) {
    if (window.Event) {
    if (e.which == 2 || e.which == 3)
    return false;
    } 
else
    if (event.button == 2 || event.button == 3) { 
    event.cancelBubble = true
    event.returnValue = false;
    return false;
    }
}
 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick;

//// ROLLOVER SUR LOGOS

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		tranchelogos_01_over = newImage("images/tranchelogos_01-over.gif");
		tranchelogos_01_tranchelogos_02_over = newImage("images/tranchelogos_01-tranchelogo.gif");
		tranchelogos_02_tranchelogos_01_over = newImage("images/tranchelogos_02-tranchelogo.gif");
		tranchelogos_02_over = newImage("images/tranchelogos_02-over.gif");
		tranchelogos_03_tranchelogos_04_over = newImage("images/tranchelogos_03-tranchelogo.gif");
		tranchelogos_03_over = newImage("images/tranchelogos_03-over.gif");
		tranchelogos_04_over = newImage("images/tranchelogos_04-over.gif");
		tranchelogos_04_tranchelogos_05_over = newImage("images/tranchelogos_04-tranchelogo.gif");
		tranchelogos_05_over = newImage("images/tranchelogos_05-over.gif");
		tranchelogos_05_tranchelogos_06_over = newImage("images/tranchelogos_05-tranchelogo.gif");
		tranchelogos_06_over = newImage("images/tranchelogos_06-over.gif");
		tranchelogos_06_tranchelogos_07_over = newImage("images/tranchelogos_06-tranchelogo.gif");
		tranchelogos_07_over = newImage("images/tranchelogos_07-over.gif");
		tranchelogos_07_tranchelogos_08_over = newImage("images/tranchelogos_07-tranchelogo.gif");
		tranchelogos_08_over = newImage("images/tranchelogos_08-over.gif");
		tranchelogos_08_tranchelogos_09_over = newImage("images/tranchelogos_08-tranchelogo.gif");
		tranchelogos_09_over = newImage("images/tranchelogos_09-over.gif");
		tranchelogos_10_over = newImage("images/tranchelogos_10-over.gif");
		preloadFlag = true;
	}
}

//// script news

   function imagePopup(url){
	if(typeof(url)!="object"){
		window._w = window.open("","","width=30,height=30,scrollbars=no,resizable=yes");
		window._w.document.open();
		window._w.document.write('<html><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><center><table height="100%"><tr><td align="center" valign="middle"><a href="javascript:window.close();"><img alt="Click here to close" border="0" src="'+url+'" onLoad="opener.imagePopup(this);"></a><br></td></tr></table></center></body></html>');
		window._w.document.close();
		}
	else{
		if(document.layers)
			window._w.resizeTo(url.width,url.height);		
		else
			window._w.resizeTo(url.width+25,url.height+60);
		}
	}



//// popup

function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

