function viewGal(gallery){
	window.open("viewpic.php?gallery="+gallery,'helpwin', 'width=680,height=680,location=0,menubar=0,resizable=0,scrollbars=1,status=1,titlebar=1,toolbar=0,screenX=100,left=100,screenY=30,top=60');
}

function delObj(id){
		if(confirm("Really delete this object?")){
		document.getElementById("objb").src="includes/handler.php?action=del&id="+id;
	}
}

function editObj(id){
	document.getElementById("objb").src="includes/edit_obj.php?id="+id;
}


function checkEnter(e, goto){
	var keynum;

	keynum = e.keyCode;
	if(!keynum){
		keynum = e.which;
	}
	if(keynum == 13){
		eval(goto);
	}
}

function readySearch(){
	var sbox = document.getElementById("search")
	if(sbox.value == "Search"){
		sbox.value = "";
		sbox.style.color = "#000000";
	}
}


function setSearch(){
	var sbox = document.getElementById("search");

	sbox.value = "Search";
	sbox.style.color = "#808080";
}

function doSearch(){
	var q = document.getElementById("search").value;
	window.location = "search.php?q="+q;
}

function subNav(section){
	mouseOn = true;
	doHideMenu(true);
	var sub = document.getElementById("subnav");
	var sub_a = document.getElementById("subnav_about");
	var about = document.getElementById("about");
	var sub_act = document.getElementById("subnav_act");
	var about = document.getElementById("about");
	var act = document.getElementById("act");
	
	if(section == "about"){
		about.style.borderLeft = "1px solid #0066FF";
		about.style.borderTop = "1px solid #0066FF"
		sub.style.display = "none";
		sub_a.style.display = "inline";
		
	}else if(section == "activities"){
		act.style.borderLeft = "1px solid #0066FF";
		act.style.borderTop = "1px solid #0066FF"
		sub.style.display = "none";
		sub_act.style.display = "inline";	
	}
}

function hideMenu(){
	setTimeout("doHideMenu(false)", 500);
}

function doHideMenu(now){

	if(now){
		var sub = document.getElementById("subnav");
		var sub_a = document.getElementById("subnav_about");
		var sub_act = document.getElementById("subnav_act");
		var about = document.getElementById("about");
		var act = document.getElementById("act");

		sub_a.style.display = "none";
		sub_act.style.display = "none";
		act.style.borderLeft = "";
		act.style.borderTop = "";
		about.style.borderLeft = "";
		about.style.borderTop = "";
		sub.style.display = "inline";
	}else if(!mouseOn){
		var sub = document.getElementById("subnav");
		var sub_a = document.getElementById("subnav_about");
		var sub_act = document.getElementById("subnav_act");
		var about = document.getElementById("about");
		var act = document.getElementById("act");

		sub_a.style.display = "none";
		sub_act.style.display = "none";
		act.style.borderLeft = "";
		act.style.borderTop = "";
		about.style.borderLeft = "";
		about.style.borderTop = "";
		sub.style.display = "inline";	
	}
}

function viewpic(id){
	window.open("viewpic.php?id=" + id,'helpwin', 'width=680,height=680,location=0,menubar=0,resizable=0,scrollbars=1,status=1,titlebar=1,toolbar=0,screenX=100,left=100,screenY=30,top=60');
}

