function active(imgName)
{
   img1 = eval(imgName + "1.src");
   document [imgName].src = img1;
}
function inactive(imgName)
{
	img2 = eval(imgName + "2.src");
    document [imgName].src = img2;
}

function apri(theUrl)
{
theString = theUrl;
if(theUrl.substring(0,4)!="http")
	theString=baseHome+theUrl;
theWin = window.open('',
'','scrollbars=yes,resizable=yes,width=460,height=460,status=no,location=no,toolbar=no');
theWin.location = theString;
theWin.focus();
if(document.all||document.layers)
theWin.moveTo((screen.width-460)/2,(screen.height-460)/2); 
return false;
}

function apriFinestraEFrameset(urlFinestra,urlFrameset)
{
document.location.href='http://127.0.0.1/';
//return apri(urlFinestra);
}
