
//Carica tutto il frameset...
domain_name = "http://www.dmrstudio.it/";

if (top.location == self.location) {
	if (navigator.appName=='Netscape'){
		window.location.reload();
	}
	myUrl = document.URL
	myLink = myUrl.slice(domain_name.length,myUrl.length); //substring(myUrl.lastIndexOf(domain_name) +1, myUrl.length);
	top.location.href = domain_name + 'index.htm?' + myLink;		
}

