function loadPage()
{
}

//----------
function table_background_color(id)
{
	if(document.getElementsByTagName)
	{
		var table = document.getElementById(id);
		if (!table) return;

		var rows = table.getElementsByTagName("tr");
		if (!rows) return;

		for(i = 0; i < rows.length; i++)
		{
		   if(i % 2 == 0)
		     rows[i].style.backgroundColor = "#EFEFFF";
		}
	}
}

//----------
String.prototype.printAddr =
function (_hamper,_prefix,_postfix,_face)
{
  _hamper=
  _prefix+
  "@"+
  this+
  (_postfix || '')
  document.write((_face||_hamper).link("mailto:"+_hamper));
}

//----------
function print_anchor(_anchor, _text)
{ document.write((_text).link(document.location.pathname+document.location.search+"#"+_anchor)); }
