﻿// Fichier JScript

        //Agrandissement systématique de la fenêtre
        parent.window.moveTo(0,0)
        parent.window.resizeTo(screen.width,screen.height)
        
        var Chemin = "../Accueil/Menu.aspx"

function clicie() 
 {
	// Fonction de détection pour Internet Explorer
	if ((event.button==2) || (event.button==3)) 
	{
		alert("© By Pj 2007");
	}
}

function clicns(e)
{
	// Fonction pour Netscape
	if(e.which==3)
	{
		alert("© By Pj 2007");
		return false;
	}
}


if (document.all) 
    {
	document.onmousedown=clicie;
	}
else if (document.layers) 
    {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = clicns;
	}
else if (document.getElementById) 
    {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = clicns;
	}
	      
        
    function Choix(Id)
    {    
    document.location = (Chemin + "?IdMenu="+Id)
    }

    function Langue(Id)
    {    
    document.location = (Chemin + "?IdLangue="+Id)
    }  
 
    function Album()
    {    
    document.location = (Chemin + "?IdMenu=999")
    } 	
    
    function Passe()
    {    
    document.location = (Chemin + "?IdMenu=998")
    }     
    
    
    function PanoResto()
    {
	var Url = "PanoResto.aspx"
	window.open(Url,"Restaurant","status=no,dependent=no,titlebar=no,location=no,toolbar=no,directories=no,resizable=no width=450,height=190,top=10,left=10")
    }
