//// SHOW A HIDDEN LAYER ////function toggleLayer(theshown,thehidden,thehidden2,signup,thestyle){	var d = document;	if (!thestyle)	{		thestyle = 'block';	}		if (theshown!='')	{		if (d.getElementById(theshown).style.display=='none' || (d.getElementById(theshown).style.display == '' && thestyle != 'table-row'))		{			if (thestyle == 'table-row')			{                d.getElementById(theshown).style.display = '';			    			}			else			{                d.getElementById(theshown).style.display = thestyle;   			}		}		else		{			if (!signup)			{				d.getElementById(theshown).style.display = 'none';			}		}	}		if (thehidden)	{		d.getElementById(thehidden).style.display = 'none';	}		return false;	if (thehidden2)	{		d.getElementById(thehidden2).style.display = 'none';	}}function toggleLayerSimple (element, style){    var e = document.getElementById(element);        if( !style )    {        style = '';    }        if( e )    {        if( e.style.display == 'none' )             e.style.display = style;        else            e.style.display = 'none';    }}