// JavaScript Document
function ExternalPopup(target, pWidth, pHeight, params){
	
	var top =(screen.height-pHeight)/2;
	var left=(screen.width-pWidth)/2;
	
	var frMsg = "Attention !\n\nVotre navigateur internet bloque actuellement l'affichage des fenêtres popup. Merci de désactiver cette option pour visualiser cette page.\n"
	var enMsg = "Beware!\n\nYour web browser actualy stop the pop-up screens. Please desactivate this option to view this page.\n"
	
	var alertMsg = (lang == "fr") ? frMsg : enMsg; 
	
    if(window.open(target, '', 'top='+top+', left='+left+', resizable=no, location=no, width='+pWidth+', height='+pHeight+', menubar=no, status=no, scrollbars=no, menubar=no')){
	}else{
		alert (alertMsg);
	}
	
}