
/* javascript, 2004 orange8 interactive ag */

var hTimOut;
var shDivs = new Array();

function regDiv(name)
{
	shDivs.push(name);
}

function showDiv(name)
{
	hideAllDivs();
	window.clearTimeout(hTimOut);
	hTimOut = window.setTimeout('hideAllDivs()', 3000);
	if(document.getElementById(name))
		document.getElementById(name).style.visibility = 'visible';
}

function hideDiv(name)
{
	if(document.getElementById(name))
		document.getElementById(name).style.visibility = 'hidden';	
}

function hideAllDivs()
{
	for(i=0; i<=shDivs.length-1; i++)
	{
		var name = shDivs[i];
		if(document.getElementById(name))
			document.getElementById(name).style.visibility = 'hidden';
	}
}

function showBlock(name)
{
	if(document.getElementById(name))
		document.getElementById(name).style.display = 'block';
}

function hideBlock(name)
{
	if(document.getElementById(name))
		document.getElementById(name).style.display = 'none';
}

function handleThumbs(nameToShow,nameToHide)
{
	if(document.getElementById(nameToShow))
		document.getElementById(nameToShow).style.display = 'block';
	if(document.getElementById(nameToHide))
		document.getElementById(nameToHide).style.display = 'none';
}

function imagePopup(sPicURL) { 
	window.open("/lan/templates/popup.aspx?"+sPicURL, "_miluspopup_", "resizable=0,HEIGHT=200,WIDTH=200");
}

function moviePopup(sMovieURL) { 
	window.open("/lan/templates/popupmovie.aspx?"+sMovieURL, "_milusmoviepopup_", "resizable=0,HEIGHT=400,WIDTH=600");
}

function roll_over(img_name, img_src) {
	document.getElementById(img_name).src = img_src;
}

function changebg(id, bg)
{
	document.getElementById(id).style.backgroundColor = bg;
}

function changefontcolor(id, fontcolor)
{
	document.getElementById(id).style.color = fontcolor;
}

function setTextDecoration(id, option)
{
	document.getElementById(id).style.textDecoration = option;
}

