function randomquotebox ()
{
document.write("<div class='quoteboxright'>");
document.write(eval("quote"+ran_number));
document.write("<\/div>");
}

// toggles text display on and off (to move a form out of the way, etc.) //
function toggleDisplay() 
{
	var onOffText = document.getElementById("toggleText"); // text/html to turn on/off //
	var toggleSwitch = document.getElementById("hideDisplayLink");
	var hideMe = document.getElementById("hideMe");
	if(onOffText.style.display == "block") 
		{
    	onOffText.style.display = "none";
    	hideMe.style.display = "none";
			toggleSwitch.innerHTML = "Show Comment Form";
  	}
	else 
		{
			onOffText.style.display = "block";
    	hideMe.style.display = "none";
			toggleSwitch.innerHTML = "Hide Comment Form";
			//document.commentsForm.FullName.focus();
		}
} // END function toggleDisplay() //
