window.defaultStatus="KeySoft - Key of Success";
window.seleccionado=null;
window.seleccionadomenu=null;

parlat=function(e,b,c){
	if(!b) var b='#EFF4FA';
	if(!c) var c='#000000';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}

sondur=function(e,b,c)
{
	if(!b) var b='#FFFFFF';
	if(!c) var c='#396DA5';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}

gonder=function(e,newwin,o)
{
	if(!o) var o=window;
	/*if(!newwin) o.frames['content'].document.location.href = e;*/
	if(!newwin) 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 ''
    }
}