var field_id;
function small_textarea(field_id)
{
	document.getElementById(field_id).rows = 2;
	// minimum row # also appears in MYSQL_class.php function insert_table_field_input_boxes()
}
function medium_textarea(field_id)
{
	document.getElementById(field_id).rows = 10;
}
function large_textarea(field_id)
{
	document.getElementById(field_id).rows = 30;
}


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() //