// JavaScript Document
/*
function openVisites(Height,Width,Url){
	var iScreenX = screen.width;
	var iScreenY = screen.height;
	var iLeftPos = (iScreenX-Width)/2;
	var iTopPos = (iScreenY-Height)/2;
	//var sFeatures = 'scrollbars=0,resizeable=0,width=' + Width + ',height=' + Height + ',top=' + iTopPos + ',left=' + iLeftPos + ',center=yes,resizable=no,status=no';
	var sFeatures = 'scrollbars=0,resizeable=1,width=' + Width + ',height=' + Height + ',top=0,left=0,center=yes,resizable=yes,status=no,toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no';
	window.open(Url ,'Visites',sFeatures);
	return false;
}
*/
function openVisites(Url){
	window.open(Url ,'Visites','width=500,height=500,status=no, scrollbars=no, menubar=no');
	return false;
}

