function refresh(){
	document.main.submit();
}

function high(TSTYLE){
	if(TSTYLE.background!='#10498c'){
		TSTYLE.background = '#ffffcc';
	}
}

function highOut(TSTYLE){
	if(TSTYLE.background!='#10498c'){
		TSTYLE.background = 'white';
		TSTYLE.color = 'black';
	}
}

function subTree(GUID){
	document.main.category_hidden_uid.value = GUID
	document.main.hidden_no_post.value = 1
	document.main.submit()
}

function highlight_item_on(item){
	item.background = "#ffffcc"
}

function highlight_item_off(item, color){
	item.background = color
}

function setSelected(TSTYLE){
	TSTYLE.background = '#ffffcc';
	TSTYLE.color = '990000';
}

function initFocus(){
	var theIDX='';

	for (i=0;i<document.forms(0).elements.length;i++) {
	if (theIDX=='') {
		obj=document.forms(0).elements(i);

		if (obj.type=="text") {
			theIDX=i;
			}
		}
	}

	if (theIDX!='') {
		document.forms(0).elements(theIDX).focus();
	}
}
