/*******************************************************************
(c) Copyright Notice - Intellectual Property Rights

This stylesheet was created by Leo Natanian, www.natanian.com
All work, unless otherwise noted, are the sole proprety of
Leo Natanian.  Permission to reuse any of the elements below 
are granted for as long as this copyright notice is left untouched.

All rights reserved.
********************************************************************/

function unhidethese()
{
	for (i = 0; i < arguments.length; i++) 
	{
		var e = $(arguments[i]); if (e) {e.style.visibility = "visible"; e.style.display = "";}
	}
}

function hidethese()
{
	for (i = 0; i < arguments.length; i++) 
	{
		var e = $(arguments[i]); if (e) {e.style.visibility = "hidden";  e.style.display = "none";}
	}
}

	/* used to update an element with an image */
	function updateImage(elem, img)
	{
		document.getElementById(elem).innerHTML = '<img src="'+ img +'" />';
	}