var Now = document.location.search;
function doNow(){
if (Now != "") {
Now=Now.substring(1);
document.indirizzo.Inserisci.value = Now;
}else{
document.indirizzo.Inserisci.value = 'http://';
}
}

var whereTo;
var parsing;
function goThere(){
whereTo = '';
whereTo = document.indirizzo.Inserisci.value;
parsing = whereTo.substring(0,7);
parsing = parsing.toLowerCase();
if (parsing != 'http://') whereTo="http://"+whereTo;
if (whereTo.length>12){
    parent.Content.location.href = whereTo;
    document.indirizzo.Inserisci.value = whereTo;
    document.indirizzo.action = 'navigation.html'+'?'+whereTo;    
}
}

function doClear(){
document.indirizzo.Inserisci.value = "http://";
}

function doNada(){
//parent.Content.focus();
}


function doBack(){
	if (window.history.length > 0) {
		history.go(-1);
	}
}
