<!--
//*********************************************OUVERTURE D'UNE POPUP
function fenetre_popup(nom_fen, param, largeur, hauteur) {
var fen_img = window.open(nom_fen,"","" + param + "width=" + largeur + ",height=" + hauteur + "");
}

//*********************************************FUNCTION DE CONNEXION A LA MESSAGERIE INTERNE MIME2
function connexion_mime(){
//alert('connexion');
var pseudo= window.document.mime.pseudo.value;
var password= window.document.mime.password.value;
//alert("Connexion ý MIME avec le pseudo="+pseudo+", et le password="+password+". ");
fenetre_popup("mime/connexion.php?pseudo=" + pseudo + "&password=" + password + "", "toolbar=0,location=0,directories=0,menuBar=no,scrollbars=yes,resizable=0,left=0,top=0,", 790, 380);
}
function mime_inscription(){
fenetre_popup("mime/inscription.php", "toolbar=0,location=0,directories=0,menuBar=no,scrollbars=yes,resizable=0,left=0,top=0,", 790, 380);
}
//*********************************************ENVOI DE LA RECHERCHE DANS UN DES MOTEURS SELECTIONNER
function recherche(){
//alert('recherche');
var quoirechercher = window.document.moteur.arechercher.value; //Ce qu'il y a a rechercher????
//alert(quoirechercher);
if (document.moteur.whatmoteur[0].checked){
//SAPO.PT
fenetre_popup("http://pesquisa.sapo.pt/search?q=" + quoirechercher + "&t=0", "toolbar=0,location=0,directories=0,menuBar=yes,scrollbars=yes,resizable=0,left=0,top=0,", 760, 500);
}
if (document.moteur.whatmoteur[1].checked){
//GOOGLE.FR
fenetre_popup("http://www.google.com/search?q=" + quoirechercher + "&hl=fr", "toolbar=0,location=0,directories=0,menuBar=yes,scrollbars=yes,resizable=0,left=0,top=0,", 760, 500);
}
}
//*********************************************OUVERTURE DE LA PHOTO DANS L AFFICHEUR PHOTO
//affiche_photo('$url_folder', '$nbimages', '$ic', '$titre')
function affiche_photo(url,totalimg,num,titre){
fenetre_popup("http://www.aldeiadaponte.com/interface_photo.php?url_folder=" + url + "&nbimages=" + totalimg + "&photo=" + num + "&titre=" + titre + "", "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=yes,resizable=0,left=200,top=100,", 640, 625);
}
//*********************************************IMPRIMER LA PAGE COURANTE
function imprimer_page(pageprint, titreprint){
//alert("La page qui va etre imprimer" + pageprint);
//alert("Son titre" + titreprint);
fenetre_popup("print.php?page=" + pageprint + "&titre=" + titreprint + "", "toolbar=0,location=0,directories=0,menuBar=yes,scrollbars=yes,resizable=0,left=0,top=0,", 585, 500);
}
//*********************************************OUVERTURE DU CHAT
function gochat(){
	var pseudonyme = window.document.chat.user.value;
	if(pseudonyme==""){
	alert("Attention!\rVous devez choisir un pseudonyme avant d'entrer dans le chat!");
	}else{
	fenetre_popup("http://chat.allochat.com/?id=aldeiadaponte&nick=" + pseudonyme + "", "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,left=0,top=0,", 787, 562);
	}
	/*alert("CHAT HORS-SERVICE/CHAT FORA DE SERVICO :\r\r[FR] DesolŽ, le chat est indisponible pour l'instant.\r[PT] Disculpa, o chat e moment‹neo indisponivel.");*/
}
//*********************************************AJOU FAVORIS INTERNET EXPLORER
function ajoutfavo() {
	var cettepage = document.location;
	var titredelapage = document.title;
	//alert("url :" + cettepage);
	//alert("title :" + titredelapage);
	if ((navigator.appName.indexOf("Microsoft",0)>=0) && (parseInt(navigator.appVersion)>=4)) {
		window.external.AddFavorite(cettepage, titredelapage);
	} else {
		alert("Cette fonction n'est proposée que par Internet Explorer 4+");
	}
}
//*********************************************ENVOI EnREGISTREMENT DU MOT EN PREMIERE PAGE
function envoi_mot(ico, nom, mot){
//alert("nom: "+nom+", mot: "+mot+", ico: "+ico);
fenetre_popup("script/mot_save.php?icone=" + ico + "&m_nom=" + nom + "&m_letxt=" + mot, "toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,left=0,top=0,", 10, 10);
window.location=document.location;
}

// -->

