﻿// JScript File
var VisibilityMenu = false;
function ChangeOnglet(LinkOn,ContentOn,LinkOff,ContentOff)
{
	document.getElementById(LinkOff).src = document.getElementById(LinkOff).src.replace(/-on/g,"-off");
	document.getElementById(LinkOn).src = document.getElementById(LinkOn).src.replace(/-off/g,"-on");
	document.getElementById(ContentOff).style.display="none";
	document.getElementById(ContentOn).style.display="";
}

function ShowCat()
{
    document.getElementById("cats").style.display = "";
    document.location.href = "#bloc_cats";
    VisibilityMenu = true;
    return false;
}

function HideCat()
{
    document.getElementById("cats").style.display = "none";
    VisibilityMenu = false;
    return false;
}

function ShowHideCat()
{
	if (VisibilityMenu)
		HideCat();
	else
		ShowCat();

}

function TestInput()
{
	var akeyword = document.getElementById("txt_keyword").value;
	if (akeyword == "Saisissez votre recherche")
	{
		document.getElementById("txt_keyword").value = "";		
	}
}

function SearchKeyword()
{
	document.location.href="/default.aspx?KEYWORD=" + document.getElementById("txt_keyword").value;
}
