//active_recent tab script
function nimg_change(notice){       
	   for(var i = 1; i <= 2; i++) {         
		 img = document.getElementById('notice'+i);
		 img.src = "../img/common/tab0"+i+".gif";    
		 eval("document.all.noticediv"+i+".style.display = 'none'")

		 if ( notice == i ) {
		  img.src = "../img/common/tab0"+i+"_on.gif";
		 eval("document.all.noticediv"+i+".style.display = ''")
		 
		 }         
	   }     
	}// JavaScript Document
	
//openpopup
function OpenWindow(url,intWidth,intHeight) { 
      window.open(url, "_blank", "width="+intWidth+",height="+intHeight+",resizable=1,scrollbars=1") ;
}

// TOOGLE MENU   
function toggle_menu(contents) {
if(contents.style.display == "none") {
contents.style.display = "";
} else {
contents.style.display = "none";
} 
}
