// JavaScript Document
function chgBG(obj,act){

if(act<=0){
	obj.style.color="#1c2173";
	obj.style.backgroundImage="url(images/menubjcr.jpg)";
	obj.style.fontweight="bold";
}else{
obj.style.backgroundImage="url(images/menubg.jpg)";
obj.style.color="#fff";
obj.style.fontweight="bold";
}
}

function toUrl(str){
	window.location=str;
	window.location.targat="_self";
	}