// _______________________________ //
// OZON Architecture - JavaScript  //
// _______________________________ //

// Fonction pour ouvrir les PDF
popUpWin = false;
function popUpWindow(URLStr) {
	
	if(popUpWin) {
		popUpWin.close();
  	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width=928,height=488,left=0,top=0,screenX=0,screenY=0');
}


// ______________________________


// Fonction pour ouvrir les pages-type : projets
popUpWin = false;
function popUpProjet(URLStr) {
	
	if(popUpWin) {
		popUpWin.close();
  	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=928,height=516,left=90,top=126,screenX=0,screenY=0');
}
// height=488,left=0,top=0

// ______________________________


// Fonction pour sortir des frames
	//if (parent.frames.length > 0) {
		//window.top.location.href = location.href;
		//}
// ______________________________    
	// Fonction pour retirer le clic-droit (Ancienne version)	
			//function disableRightClickss(eve) {
				//if ((navigator.appName == "Netscape") && (eve.which == 3)) {
					//alert('Arrete de tricher');
					//return false
				//}
				
				//if ((navigator.appVersion.indexOf("MSIE") != -1) && (event.button == 2)) {
					//alert('Arrete de tricher');
					//return false
				//}
			//}
			
			//document.onmousedown = disableRightClickss;
		

