//// JavaScript codés pour le site Metin-Source
//// Createurs : WinK et UnKnOwN DrAgOoN

// <!-- Script changement de langue : Forcé d'être en externe de la page pour eviter les multi-traductions-->
	function link(adresse){
		window.location.href=adresse;  
		delete adresse;
	}

// Script pour cacher ou montrer les elements du menu
	function displayOrHideMenu(divId){
		var myDiv = document.getElementById(divId);
		if(myDiv.className == 'menu_invisibles'){
			myDiv.className = 'menu_visibles';
		} else {
			myDiv.className = 'menu_invisibles';
		}
	}
		
// Script pour cacher ou montrer les details de cartes
	function displayOrHideMap(divId){
		var myDiv = document.getElementById(divId);
		if(myDiv.className == 'map_invisibles'){
			myDiv.className = 'map_visibles';
		} else {
			myDiv.className = 'map_invisibles';
		}
	}
	
// Script pour retiré l'interieur des Input a la selection	
function ClearField(field)
{
	field.value = "";
}

// Script pour add en favorie, obliger de le faire ainsi pour être compatible Firefox
    function addToFavorites(anchor){
		var urlAddress = "http://lookbeaute.free.fr/";
		var pageName = "lookbeauté, votre coiffeuse à votre domicile en région parisienne";
		if (window.external){
			window.external.AddFavorite(anchor.getAttribute('href'), anchor.getAttribute('title'));
		}
    }
	

// <!-- Script Agrandissement via popup -->
function ouvre(img) { 
titre="Agrandissement"; 
w=open("",'image','width=400,height=400,toolbar=no,scrollbars=yes,resizable=no'); 
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+20,document.images[0].height+53); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
w.document.write("<BODY onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Mon image'>"); 
w.document.write("</TD></TR></TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close(); 
} 

// <!-- Script Date/heure-->

	function VersionNavigateur(Netscape, Explorer) {
	if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') || 
	(navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))
	return true;
	else return false;
	}
	function Semaine(){
	this[0] = "Dimanche"; this[1] = "Lundi";
	this[2] = "Mardi"; this[3] = "Mercredi";
	this[4] = "Jeudi"; this[5] = "Vendredi";
	this[6] = "Samedi";
	}
	
	function Mois(){
	this[0] = "Janvier"; this[1] = "Février";
	this[2] = "Mars"; this[3] = "Avril";
	this[4] = "Mai"; this[5] = "Juin";
	this[6] = "Juillet"; this[7] = "Août";
	this[8] = "Septembre"; this[9] = "Octobre";
	this[10] = "Novembre"; this[11] = "Décembre";
	}
	today = new Date;
	function date(){
	var semaine=new Semaine();
	var mois=new Mois();
	var myDate=new Date();
	annee = today.getFullYear();
 
	var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+annee;
	document.writeln(result);
	}
	function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; }

//<!-- Fin des Scripts -->
