function LinkOn(element)
{
    document.getElementById(element).style.color='#FF0000';

}

function LinkOff(element)
{
    document.getElementById(element).style.color='#CB0003';
}

function goTo(adres)
{
	window.location.assign("http://"+location.hostname+"/"+adres);
}

