function onload_handler()
{
	return true;
}

// thanks xoops for this function
function xGetElementById(id)
{
	if (document.getElementById) 
	{
		return (document.getElementById(id));
	} 
	else if (document.all) 
	{
		return (document.all[id]);
	} 
	else 
	{
		if ((navigator.appname.indexOf("Netscape") != -1) && parseInt(navigator.appversion == 4)) 
		{
			return (document.layers[id]);
		}
	}
}

//write email address user@domain
function write_address(user, domain)
{
document.write('<a href="mailto:' + user + String.fromCharCode(64) + domain + '">' + user + String.fromCharCode(64) + domain + '</a>');
}
//Href on TD
function mouseOverTD(td)
{
	td.style.cursor = "hand";
	td.style.backgroundColor="#E7E7F3";
	//td.style.backgroundImage="url(img/bg_wave1_l.jpg)";
}

function mouseOutTD(td)
{
	td.style.cursor = "hand";
	td.style.backgroundColor="#F3F5F7";
	//td.style.backgroundImage="none";
}
