
/* 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()
{
	if(document.getElementById('nav_home'))
		document.getElementById('nav_home').style.visibility = 'hidden';
	if(document.getElementById('nav_organisation'))
		document.getElementById('nav_organisation').style.visibility = 'hidden';
	if(document.getElementById('nav_market'))
		document.getElementById('nav_market').style.visibility = 'hidden';
	if(document.getElementById('nav_houses'))
		document.getElementById('nav_houses').style.visibility = 'hidden';
	if(document.getElementById('nav_photo'))
		document.getElementById('nav_photo').style.visibility = 'hidden';
	if(document.getElementById('nav_links'))
		document.getElementById('nav_links').style.visibility = 'hidden';
	if(document.getElementById('nav_contact'))
		document.getElementById('nav_contact').style.visibility = 'hidden';		
	if(document.getElementById('btn_enter'))
		document.getElementById('btn_enter').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=yes,status=no,toolbar=no,resizable=yes').focus();
}

function openAcrobat()
{
	openWnd('http://www.adobe.com/products/acrobat/readstep2.html', 800, 600);
}

