function hideobject(oid) {
	if (document.getElementById(oid)) {
    document.getElementById(oid).style.visibility = "hidden";
    }
}
function showobject(oid) {
	if (document.getElementById(oid)) {
    document.getElementById(oid).style.visibility = "visible";
    }
}