// JavaScript Document


//                                         
// list functions                          
//                                         

function invertRow (elmt) {
	e = document.getElementById("title"+elmt);
	e.style.textDecoration = "underline";
}

function normalizeRow(elmt) {
	e = document.getElementById("title"+elmt);
	e.style.textDecoration = "none";
}

function invertThumb(elmt) {
	e = document.getElementById("thumb"+elmt);
	e.style.borderBottom = "4px solid #000000";
	e.style.marginBottom = "-4px";
}

function normalizeThumb(elmt) {
	e = document.getElementById("thumb"+elmt);
	e.style.borderBottom = "none";
	e.style.marginBottom = "0px";
}

window.scrollbars.visibility = true;





// blocking()
// Source: www.xs4all.nl/~ppk

var supported = (document.getElementById || document.all);

if (supported)
{
	document.write("<style type='text/css'>");
	document.write(".dropdown { display:none; }");
	document.write(".dropdown_title { display:none; }");
	document.write("</style>");

	var max = 100;
	var shown = new Array();

//	for (var i=1;i<=max;i++)
//	{
//		shown[i+1] = false;
//	}

}




function blocking(name)
{
	
	if (!supported)
	{
		alert('This link does not work in your browser.');
		return;
	}
	
	var section = '"' + name + '"';
	
	
	shown[section] = (shown[section]) ? false : true;
	

	current = (shown[section]) ? 'block' : 'none';
	

	if (document.getElementById)
	{
		document.getElementById(name).style.display = current;
	}
	else if (document.all)
	{
		document.all[name].style.display = current;	
	}

}

