function cambiacolore(aa,colore) 
   { 
   bb = document.all ? document.all[aa] : document.getElementById ? document.getElementById(aa) : document[aa]; 
   if (bb) 
      bb.style.backgroundColor  = colore; 
   } 

 // Popup Credits
function popup()
{
	window.open("http://www.kora.it/credits/credits.htm","","width=250,height=157,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=5,left=5");
}

//Verisign
function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin";
}
//MyString.replace(/Go/, "Up") 
//var stringa = "www.morpheusweb.it";
//document.write(stringa.replace("www","http://www"));

var uri = document.location.href;	
var versionName

function changeVersion()
{
	if (uri.indexOf("/en/") !=-1)
	{
		uri = uri.replace("/en/","/it/");
		versionName = "Italiano";
	}
	else
	{
		uri = uri.replace("/it/","/en/");
		versionName = "English";
	}
	document.write("<area alt=\"" + versionName + "\" coords=\"19,10,141,35\" href=\"" + uri + "\">");
}
