// JavaScript Document
function swapBgOver(id){
	document.getElementById(id).style.background="#EEF3FA";	
	document.getElementById(id).style.cursor = "pointer";
	document.getElementById(id).style.color = "#19316D";
}
function swapBgOut(id){
	for(j=1;j<=7;j++){
		if(j!=id){
			document.getElementById(id).style.background="#19316D";	
			document.getElementById(id).style.color = "#ffffff";
		}
	}
}
function menuShow(obj){
	var whichEl = document.getElementById("ul" + obj);
	for( i=1;i<=2;i++){
		if(i!=obj) 
		document.getElementById("ul" + i).style.display="none";
	}
	if(whichEl.style.display=="block"){
		whichEl.style.display="none";
	}else{
		whichEl.style.display="block";
	}
}
function change_div(index){
	for(var i=1;i<=7;i++){
		document.getElementById("content"+i.toString()).style.display = 'none';
		document.getElementById("area"+i.toString()).className ='tabContentNormal';
	}
	document.getElementById("content"+index.toString()).style.display = 'block';
	document.getElementById("area"+index.toString()).className ='tabContentOver';
}
function openNews(name){
	window.open(name,'newwindow','height=650,width=600, toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no')
}
function open_win(url){
   window.open(url,"views","toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no,width=668,height=600");
}
