// JavaScript Document
function editbox(){
	document.editfrm.flag.value=1;
	document.editfrm.submit();
}

function subeditbox(){
	document.subeditfrm.subflag.value=1;
	document.subeditfrm.submit();
}

function over(a){
	a.style.background= '#D4EBEA';
}
	
function out(a){
	a.style.background= '';
}

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

function cancel(){
	document.htmlfrm.cancel.value=1;
	document.htmlfrm.submit();
}

function logout(){
	document.logoutfrm.submit();
}


