function Dom(chaine) {
	return document.getElementById(chaine);
}
function Afficher(chaine) {
	document.getElementById(chaine).style.display='block';
}
function Cacher(chaine) {
	document.getElementById(chaine).style.display='none';
}
function Focus(chaine) {
	if(document.getElementById(chaine))
		document.getElementById(chaine).focus();
}
function openUrl(param,titre){
	var w;
	w = window.open(param,titre,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=1000,height=610'); 
	w.focus();
}

function openSite(param,titre){
	var w;
	w = window.open(param,titre,'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1000,height=610'); 
	w.focus();
}
