//--------------------------------------------------------------------------------------------------//
                        //SWITCHAROO FUNCTIONS--DO NOT EDIT BELOW THIS LINE//
//--------------------------------------------------------------------------------------------------//
function changetext(whichcontent)
{
//if it is IE
if (document.all)
	{
	switchit.innerHTML=whichcontent;
	}	
//if it NN4 or below	

else if (document.layers)
	{
	document.d1.document.d2.document.write(whichcontent);
	document.d1.document.d2.document.close();
	}
//if it is NN6	
else
	{
	var myElement = document.getElementById("switchit");
	myElement.innerHTML =  whichcontent;
	}	

}


function dynamic(arraytouse , textarraytouse)
{
var i = 0;
var tablenumber="";


	while (i < arraytouse.length)
		{
		
		if ((arraytouse[i].indexOf("target=")!= -1) || (arraytouse[i].indexOf("javascript:")!= -1))
			{
			var target = "";
			}
		else
			{
			var target = 'target="content"';
			}	
		
		tablenumber += '<td align="center" class="subnav" valign="middle"><a href=' + arraytouse[i] + ' ' + target + ' class="subnav">' + textarraytouse[i] + '</a></td>';
		if ((i != arraytouse.length-1) && (spacer == true)) 
			{
			tablenumber += '<td align="center" class="subnav" valign="middle"> | </td>';
			}
		i++;
		}
		
return tablenumber;					
}
//--------------------------------------------------------------------------------------------------//
                                      //END SWITCHAROO FUNCTIONS//
//--------------------------------------------------------------------------------------------------//