function submitForm() {
	document.update.submit();
}

function confirmRemove(projectName) {
	var conf=confirm("Are you sure you wish to remove "+projectName+"?");
	if (conf) {
		document.admin.removeproject.value = 'true';
		document.admin.submit();
	} else {
		return false;
	}
}

function toggleVisible(element)	{
	if(document.getElementById(element).style.display=="none")
		document.getElementById(element).style.display="block";
	else
		document.getElementById(element).style.display="none"
}

function showlabel(element) {
	document.getElementById(element).style.display="block";
}

function hidelabel(element) {
	document.getElementById(element).style.display="none";
}

function deleteCookie(name) {
	document.cookie = name + "= 'logout';expires=Thu, 01-Jan-1970 00:00:01 GMT";
}


//necessary for Rich Text Editor
initRTE("rte/images/", "rte/", "css/style.css", true);
var domTT_styleClass = 'domTTOverlib';


