// JavaScript Document
function oDisplay(oID)
{
	if (document.getElementById(oID).style.display=="none") {
		document.getElementById(oID).style.display="list-item";
	}
	else {
		document.getElementById(oID).style.display="none";
	}
}

function oDisplay(oID, val)
{
	document.getElementById(oID).style.display=val;
}

function ttr()
{
	window.location.href='http://www.arcosistemi.it';
}

function imgHres(oID)
{
	document.getElementById(oID).style.height=window.top.document.body.offsetHeight-286;
}

function ttp()
{
	if (parent.location.href == self.location.href) {
    if (window.location.href.replace)
        window.location.replace('index.html');
    else
        window.location.href = 'index.html';
	}
}