
function callPopUp(pointDeVue,Destination) {
	var theURL; var ixx; var attrib ;
	var hauteur = screen.availHeight - 92;
	//alert("hauteur = " + hauteur);
	pointDeVue = pointDeVue.toLowerCase();
	theURL = pointDeVue + "/" + Destination + ".asp";
	
	attrib = 'width=676,height=500,status=nos,menubar=yes,scrollbars=yes,resizable=yes,top=0,left=0';
	ixx = window.open(theURL,'jparle',attrib); 
	ixx.focus();
}

function ModifTITLE(newTitle) {
	document.title = newTitle;
}

