// JavaScript Document

function afficherphotos(monidfilm){
mywin = window.open('afficherphotos.cfm?idfilm=' +monidfilm, 'photos','toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes');
mywin.window.focus();
}

function afficherphotos2(monurl){
mywin = window.open('afficherphotos.html?' + monurl, 'photos','toolbar=no,directories=no,menubar=no,status=no,resizable=yes,scrollbars=yes');
mywin.window.focus();
}


function fullscreen(){
var hdiff;
window.moveTo(-4,-4);
window.resizeTo(screen.width,screen.height);
hdiff=window.screenTop;
window.moveTo(-6,-hdiff-7);
window.resizeTo(screen.width+13,screen.height+hdiff+35)
}


// discativate right-click
var message = "Veuillez utiliser le clic gauche"; 
function rtclickcheck(keyp){ 
if (navigator.appName == "Netscape" && keyp.which == 3){
	alert(message); 
	return false; } 
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2){
	alert(message); 	
	return false; } 
}

//document.onmousedown = rtclickcheck;


function isOnline(){
	x = document.URL.indexOf("http://") != -1;
	return x;
}

