/* ouvre une fenêtre popup */
function ouvre_demo(w) {
	tx=(((screen.availWidth)/2)-(800/2));
	ty=(((screen.availHeight)/2)-(540/2));
	script=open(w,"demo","toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=800,height=540,top="+ty+",left="+tx+",alwaysraised=yes");
}
//ouvre une fenêtre pour demandé son mot de passe tropimed si oublié
function popupPassword(w) {
	tx=(((screen.availWidth)/2)-550/2);
	ty=(((screen.availHeight)/2)-270/2);
	script=open(w,"password","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=270,top="+ty+",left="+tx+",alwaysraised=yes");
}
//popup simple
function popUp(w){
	script=open(w);
}

//popup detail
function popupDetail(w) {
	script=open(w,"detail","toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=628,height=550");
}

// Redirige vers la meme page mais dans une autre langue
function goTo(lang){
	if(window.location.pathname.lastIndexOf("/fr/") != -1){
		var posLangue = window.location.href.indexOf("/fr/");
	} else if(window.location.pathname.lastIndexOf("/de/") != -1){
		var posLangue = window.location.href.indexOf("/de/");
	} else {
		var posLangue = window.location.href.indexOf("/en/");
	}
	
	var mySite = document.location.href.substr(0,posLangue)
	var myPage = document.location.href.substr(posLangue+4);
	location.href=mySite+"/"+lang+"/"+myPage;
}
