
// BARRE DE TACHE

<!--
window.defaultStatus="NETTOYEUR HAUTE PRESSION : UN SITE DE 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;

//// 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);
}

