//////// NAVIGATEUR /////////////////////////////
/////////////////////////////////////////////////
maximiserEcran();
copyright();

msie= (document.all && (navigator.appName.indexOf("Microsoft")>=0 || navigator.appName.indexOf("Internet Explorer")>=0) )? true : false; 
ffoxNscape= navigator.appName.indexOf("Netscape")>=0 ? true : false; 
annee= new Date;
annee= annee.getFullYear();

/////////////////////////////////////////////////////////////////////

function copyright(e){  
  if(!document.clicDroit){ 
	   if(document.layers){ 
			  document.captureEvents(Event.MOUSEDOWN);
			  document.onmousedown = copyright;
			 }
	   else{ 
	          document.oncontextmenu = copyright;
			 }
  return document.clicDroit = true;
    }
 
  if(document.layers || (document.getElementById && !document.all)){
	   alert('Les Photographies de ce site sont protégées par Copyright.\n\n \t Jean-Michel CAREL '+annee);
	   return false;
	   }
   else{   
	   alert('Les Photographies de ce site sont protégées par Copyright.\n\n \t Jean-Michel CAREL '+annee);
       return false;
	   }
}
/////////////////////////////////////////////////////////////////////
function roll(event, newImage){
	id= (event.target) ? event.target.id : event.srcElement.id;
 	document.getElementById(id).src= "../ressource/img/"+newImage;
 }
/////////////////////////////////////////////////////////////////////
function maximiserEcran(){
window.moveTo(-3,0);
  if (document.getElementById || document.all){ //msie ou netscape
 		window.resizeTo(screen.availWidth+6,screen.availHeight);
 		}
  else if (document.layers){ //netscape 4
		if (window.outerHeight<screen.availHeight || window.outerWidth<screen.availWidth){
			  window.outerWidth = screen.availWidth+6;
			  window.outerHeight = screen.availHeight;					  
			 }
	}
}
