/**
 * File: custom.js
 * Copyright: 
 * 	2008 Fabien LESBORDES (vectanim.com)
 */

function fixOutOfMemoryError() {
if (navigator.appName=='Microsoft Internet Explorer')
{
  __flash_unloadHandler = function() {};
  __flash_savedUnloadHandler = function() {};
}
}
if (window.attachEvent)
{
window.attachEvent("onbeforeunload", fixOutOfMemoryError);
}


function checkSize(){
	if(screen.height < 601){
		alert("AVERTISSEMENT SYSTEME \n\nVotre résolution d'écran est de  800x600 ou moins. Nous vous recommandons de presser la \n touche F11, ou de changer la résolution de votre écran afin d'avoir la meilleure expérience de ce site");
	}else{
		var H;
		var W;
		H = window.innerHeight;
		W = window.innerWidth;
		if (navigator.appName.indexOf("Microsoft")!=-1) {
	  		H = document.body.offsetHeight;
	  		W = document.body.offsetWidth;
		}
		var newH = H;
		var newW = W;
		if(newH < 620)
			newH = 620;
		if(newW < 820)
			newW = 820;
		if((newW!= W) || (newH != H)){
			window.innerHeight = newH;
			window.innerWidth = newW;
			if (navigator.appName.indexOf("Microsoft")!=-1){
				window.resizeTo(newW+10,newH+160)
			}
		}
	}
}