
// Prendre le focus
window.focus();

// Supprimer des cadres exterieur
if(self.location.href != top.location.href)
{
	top.location.href = self.location.href;
}

window.defaultStatus="Kintana Yachting";

//--> Afficher dans la barre de status
function AfficheStatus(text){
		window.status = text;
}

//function counter_image(id){
//	return alert('Alert #id '+id);
//}

function counter_image(id){
	//--> Charger le fichier qui compte les cliques
	if(document.images)
	{
		var idunic = (1 + Math.floor((Math.random()*15648512.654)));
		(new Image()).src="compter_click_image.php?idimg="+id+"&rand="+idunic;
		//alert(id);
	}
 //  return true;
}

//--> Afficher ou cacher un element
function ouvrir_client(namelist, ok){
	if(ok == 1)
	{
		document.getElementById(namelist).style.display = "block";
	}else
	{
		document.getElementById(namelist).style.display = "none";
	}
}

-->