window.defaultStatus = "Benvenuti All'ISI-CNV! Istituto di Formazione specializzato nelle scelta delle tecniche pił moderne ed efficaci!";

function doIt() {
	var domainName = getName();
	var pages = history.length - 1;
	var mesg = "";
	mesg += domainName + "\n";
	mesg += "browser=" + navigator.appName + " " + navigator.appVersion + "\n";
	mesg += "previous pages visited=" + pages + "\n";
	mesg += "previous URL=" + document.referrer + "\n";
	document.sender.elements[0].value = mesg;
	document.sender.elements[1].click();
// to e-mail when the page loads, comment out the next line and switch the <BODY> tags.
	var change = setTimeout("go();", 3000);
}

function go() {
// change to your specified URL
	top.location.href = "http://www.neurolinguistic.com/pnl/it-indexdx.htm";
}

function getName() {
	var netscapeTest = parseInt(navigator.appVersion);
	var explorerTest = navigator.appName.indexOf("Microsoft") + 1;
	var domainName = "";
	if ((explorerTest == "0") && (netscapeTest == "3")) {
		if (navigator.javaEnabled()) {
			domainName = java.net.InetAddress.getLocalHostName();
		}
	}
	else if ((explorerTest == "0") && (netscapeTest == "4")) {
		if (navigator.javaEnabled()) {
			baseAddress = java.net.InetAddress.getLocalHost();
			domainName = baseAddress.getHostName();
		}
	}
	return domainName.toString();
}
