function divmouseover(div) {
	div.style.cursor='hand';
	div.style.cursor='pointer';
	div.style.backgroundColor='#005500';
}

function menumouseover(div) {
	div.style.backgroundColor = "#00cc33";
	mouseoverpointer(div);
}

function mouseoverpointer(div) {
	div.style.cursor='hand';
	div.style.cursor='pointer';
}

function menumouseclick(id, attrib, attrib2) {
	attrib = typeof(attrib) != 'undefined' ? attrib : "";
	attrib2 = typeof(attrib2) != 'undefined' ? attrib2 : "";
	document.getElementById("menuFrm").attrib.value=attrib;
	document.getElementById("menuFrm").attrib2.value=attrib2;
	if (id.id == undefined) {
		page = id;
	} else {
		page = id.id;
	}
	document.getElementById("menuFrm").page.value = page;
	document.getElementById("menuFrm").submit();
}

function logout(id) {
	document.getElementById("logoutfrm").submit();
}

function gosearch() {
	var str = document.getElementById("searchtext").value;
	if (str.replace(/^\s*|\s*$/g,"") == "") {
		alert("Please enter some text");
	} else {
		document.getElementById("searchform").submit();
	}
}

function menumouseout(div) {
	div.style.backgroundColor = "";
}