function qpagBlur(obj){if(obj.blur)obj.blur();} 

function qpagChgSubmenuCell(obj,id,state) { 
	if(state==0){
		obj.style.backgroundColor="#A4847F";
		obj.style.color="#FFFFFF";
		document.getElementById(id).style.color="#FFFFFF";
	}else{
		obj.style.backgroundColor="#D2D2D2";
		obj.style.color="#000000";
		document.getElementById(id).style.color="#000000";
	}
}