// JavaScript Document

// Initialisation du focus sur le champ Google
window.onload = function () {
	if (navigator.appName == "Microsoft Internet Explorer") {
		document.getElementById('menu_txt').style.posLeft = -40.0;
	}
	document.getElementById('message_marquee').style.visibility = "visible";
	document.forms[0].elements[0].focus();
}

// Script de recherche Wikipédia
function lancerWiki() {
	var saisie = new String(document.getElementById('wiki').value);
	if (saisie == "" || saisie == "Entrer un mot") {
		return false;
	}
	else {
		document.location.href = "http://fr.wikipedia.org/wiki/"+saisie;
		return true;
	}
}

// Script de recherche Deezer
function lancerDeezer() {
	var saisie = new String(document.getElementById('deezer').value);
	if (saisie == "" || saisie == "Entrer Titre/Artiste") {
		return false;
	}
	else {
		document.location.href = "http://www.deezer.com/#music/result/all/"+saisie;
		return true;
	}
}

// Script de recherche YoutTube
function lancerYoutube() {
	var saisie = new String(document.getElementById('youtube').value);
	if (saisie == "" || saisie == "Entrer un mot-clé") {
		return false;
	}
	else {
		document.location.href = "http://fr.youtube.com/results?search_query="+saisie+"&search_type=&aq=f";
		return true;
	}
}

// script d'affichage/masquage du plan d'accès Sogé
function acces_sg($root_folder) {
	$url = new String($root_folder+"/acces_sg.php");
	$options = new String("menubar=no, directories=no, toolbar=no, status=no, scrollbars=no, resizable=no, width=750, height=592");
	window.open($url, "", $options);
}