//function showHome(data){
//	alert('Show home ...\n\n'+data);
//}

function loadFile(file) {	
	var XHR = new XHRConnection();		
	XHR.setRefreshArea('homeContainer');
	XHR.sendAndLoad(file, "GET");
	return true;
}


//Anti click droit
function noClickdroit(){
	alert('Fred Rister (c) www.fredrister.com');
	return(false);
}
document.oncontextmenu = noClickdroit;
