// JavaScript Document

function goToStartWeb(timer)
{
	timer--;
	if(timer == -1)
	{
		document.location = "index.php";
	}
	else
	{
		//alert(document.getElementById('timer'));
		document.getElementById('timer').innerHTML = timer;
		setTimeout("goToStartWeb(" + timer + ")", 1000);
	}		
}

function showMenu(id)
{
	var div = document.getElementById(id);
	
	if(div.style.display == 'none')
	{
		div.style.display = 'block';
	}
	else
	{
		div.style.display = 'none';
	}
}

function opened(url, width, height) {
	var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no');	}