function go_scope( id ){ hauteur = screen.height; largeur = screen.width; if( id == "") window.open("/scope/index.php",'WindowName', "fullscreen=yes, directories=no, menubar=no, status=no, toolbar=no"); else window.open("/scope/index.php?game=" + id,"fenetre1","width="+ largeur +",height="+ largeur +",left=0,top=0,scrollbars=yes"); } function bookmark(){ var title=document.title; var url = document.location; if (window.sidebar) { //pour firefox //window.sidebar.addPanel(title, url,""); show_box('Appuyer sur Ctr+D pour sauvegarder ce site !'); }else if( window.opera && window.print ) { var dcE = document.createElement('a'); dcE.setAttribute('rel','sidebar'); dcE.setAttribute('href',url); dcE.setAttribute('title',title); dcE.click(); } else if( document.all ) { //pour IE 6 et 7 window.external.AddFavorite( url, title); } } function homepage(){ /* if ( typeof document.body.style.maxHeight != "undefined") { this.style.behavior='url(#default#homepage)'; this.setHomePage(document.location); } else show_box('Votre navigateur ne supporte pas cette fonction. utilisez le menu de votre browser : Faites de ce site votre page d\'accueil'); */ } //fonction qui permet d'afficher un message autre function show_box(texte, title, width, height){ if( !title) title = "Information !"; if( !height) height = 50; if( !width) width = 300; mess = '

' + texte + '

'; $("body").append(mess); tb_show( title, "#TB_inline?height=" + height + "&width=" + width + "&inlineId=alert_box", false); $("#alert_box").remove(); } function validation( email ) { //var email = $('#email').val(); var place = email.indexOf("@",1); var point = email.indexOf(".",place+1); if ((place > -1)&&(email.length >2)&&(point > 1)) return true; return false; }