// redirect.js
// reindirizza a webPortal per l'apertura della pagina

// © 2000-2006 - copyright by Pino Di Lucca
// tutti i diritti riservati

function openPage() {
	var url = "url=" + escape(window.location.href);
	var userAgent = "userAgent=" + escape(window.navigator.userAgent);
	var resolution = "resolution=" + window.screen.width + "x" + window.screen.height;
	var platform = "platform=" + escape(window.navigator.platform + " (" + window.navigator.cpuClass + ")");
	var src;
	
	if (window.location.protocol == "file:" || window.location.hostname == "localhost")
		src = "http://localhost";
	else
		src = "http://" + window.location.hostname;
	src += "/webPortal/?" + url + "&" + userAgent + "&" + platform + "&" + resolution;
	
	try {
		if (window.frames.main.location.href == "about:blank")
			window.frames.main.location.replace(src);
	}
	catch (e) {
		// ignora l'errore
	}
	
}

