
function popWin(F,N,W,H){
	if(W >screen.width)W=screen.width;
	if(H >screen.height)H=screen.height;
	var x=(((screen.width)/2)-(W/2));
	var y=(((screen.height)/2)-(H/2));
	window.open(F,N,'width='+W+',height='+H+',left='+x+',top='+y+',location=no,menubar=yes,resizable=no,scrollbars=yes,status=no,toolbar=no');
}

function displayVideo(){
	popWin("RG2006.php","rg_2006",420,340);
}

function zoomImage(F){
	popWin("RG2006.php?i="+F,"rg_2006",700,540);
}

function suiviDirecte(){
	popWin("suivi-course.php","rg_2009",800,670);
}

function centerWin(){
	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	  winH = window.innerHeight;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	  winH = document.body.offsetHeight;
	 }
	}
	window.moveTo(screen.width/2-(winW/2),screen.height/2-(winH/2))
}

function submitForm(){
	var A = '../process_contact.php';
	var o = document.getElementById('frm_contact_email');
	o.action = A;
	o.submit();
}
