﻿// JScript File


window.onload=montre;

var global_id = -1;



function onTimer()
{
    if(global_id != -1)
    {
        var d = document.getElementById(global_id);
	    for (var i = 0; i<=200; i++) {
	        var ids = 'smenu'+i;
		    if (document.getElementById(ids)) {
		        document.getElementById(ids).style.display='none';
		    }
	    }
	    if (navigator.appName!="Microsoft Internet Explorer")
	    {
            if (d) {d.style.display='block';}
        }
    }
}

function montre(id) 
{
    global_id = id;
    
    if(id < 0)
    {
        onTimer();
    }
    else
    {
        if (navigator.appName!="Microsoft Internet Explorer")
	    {
            timeoutID = window.setTimeout("onTimer()",500);
        }
    }
    
}



function annuleMontre(id)
{
    if(global_id == id)
    {
        global_id = -1;
    }
}



function addToCart(pid)
{   
    var q = 5;
    
    q =document.getElementById("quantity").value;
	
	document.location.href="index.aspx?action=AddToCart&product=" + pid + "&quantity=" + q;      
}

/*

function validateSStep(currentStepAction, nextStepAction)
{
    if(currentStepAction == "validateConditions")
    {
        ac = document.getElementById("acceptConditions");
        
        if(ac.checked)
        {
            document.location.href="sindex.aspx?action=" + nextStepAction;      
        }
        else
        {
            alert("Veuillez lire et accepter les conditions de vente pour continuer");
        }
    }
    else
    {
	    document.location.href="sindex.aspx?action=" + nextStepAction;      
	}
}

*/

