//Site
var site = 'CeresWorld.NET Inc.';

//Status
var txtstatus = 'Welcome on CeresWorld.NET... Enjoy your visit!';
var webstatus = 'Send message to the webmaster';

//Gestion barre de tâche
function contact(){
	window.status = webstatus;
	}
function normal(){
	window.status = txtstatus;
	}

//Fonction fenêtre pop-up CLASSIX
function popup(URL, width, Height){
	var zoom = window.open(URL,"Visionneuse","topmargin=0, leftmargin=0, rightmargin=0, bottommargin=0, toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=" + width+ ",height=" + Height);
	zoom.focus();
}

//Fonction fenêtre pop-up V2 + Clic2Exit
//function popup(URL, width, Height){
//	var html = 	'<title>.:: Visionneuse ::.</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>'+
//			'<img src="' + URL + '" onclick="javascript:window.close()">'+
//			'</body>';
//	var popup = window.open(URL,'_blank','width='+width+',height='+Height+',status=no');
//	popup.document.write(html);
//	popup.focus();
//}
