
/* javascript, 2004 orange8 interactive ag */

var hTimOut;
var iimgs = new Array();
var vimgs = new Array();

function showDiv(name)
{
	hideAllDivs();
	window.clearTimeout(hTimOut);
	hTimOut = window.setTimeout('hideAllDivs()', 3000);

	var divToShow = document.getElementById(name);
	if(divToShow)
		divToShow.style.visibility = 'visible';
}

function hideAllDivs()
{
	///
	/// example
	///
	/*if(document.getElementById('nav_portrait'))
		document.getElementById('nav_portrait').style.visibility = 'hidden';
	*/
}


function openwnd(fil, width, height)
{
	openWnd(fil, width, height);
}

function openWnd(fil, width, height)
{
	window.open(fil,'popup','left='+((screen.availWidth-width)/2)+',top='+((screen.availHeight-height)/2)+',width='+width+',height='+height+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no').focus();
}

function openAcrobat()
{
	openWnd('http://www.adobe.com/products/acrobat/readstep2.html', 800, 600);
}

