window.defaultStatus="gartencenter-deutschland.de";
window.seleccionado=null;
window.seleccionadomenu=null;

enciende=function(e,b,c){
	if(!b) var b='#FFFFFF';
	if(!c) var c='#B19638';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}

apaga=function(e,b,c)
{
	if(!b) var b='#B19638';
	if(!c) var c='#FFFFFF';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}

ira=function(e,newwin,o)
{
	if(!o) var o=window;
	if(!newwin) o.frames['contenido'].document.location.href = e;
	else window.open(e,newwin)
}

getVar=function(nombre){
    var url = document.location.href;
    if ( url.indexOf(nombre) != -1 )
	{
        posiIni = url.indexOf("=", url.indexOf(nombre))
        barre = url.indexOf("&", posiIni)
        posiFin = (barre != -1 ? barre : url.length)
        return url.substring(posiIni+1,posiFin)
    } else
	{
    	return ''
    }
}