// JavaScript Document

function toggle_dg(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}
function clearForm() 
{
	if (document.csesearchbox.q.value == "Search Tarleton") 
	{ 	
		document.csesearchbox.q.value = ""; 
		document.csesearchbox.q.className = "";
		document.csesearchbox.q.focus();
	}
}

function initForm() 
{
	if (document.csesearchbox.q.value == "") 
	{ 	
		document.csesearchbox.q.value = "Search Tarleton"; 
		document.csesearchbox.q.className = "init";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindow_confirm(sPrompt,theURL,winName,features){
	//alert('MM_openBrWindow_confirm('+sPrompt+','+theURL+','+features);
	if (confirm(sPrompt)) {
		window.open(theURL,winName,features);
	}
}

