// mainmenu
var hide1;
var hide2;
var hide3;
var hide4;
var hide5;
var hide6;
var hide7;
var hide8;
var hide9;
var hide10;
var hide11;

function pdmenu(x,y){
	clearTimeout(y);
	document.getElementById('pulldownmnu'+x).style.visibility="visible";
}
function pdmenuhide(x){
	document.getElementById('pulldownmnu'+x).style.visibility="hidden";
}



// submenu
var timer;

function disp(z,s) {
 if(z.style.display=="none"){
   z.style.display="block";
   document.getElementById('selectoff'+s).setAttribute('id','selecton'+s);
  
	} 
  else{
   z.style.display="none";
   document.getElementById('selecton'+s).setAttribute('id','selectoff'+s);
   // window.open('imf/blanck.html','iframe1')

		}
	}


function pop_up(pop_get){
	location.href = pop_get.options[pop_get.selectedIndex].value;
}

function pop_up2(pop_get){
	location.href = pop_get.options[pop_get.selectedIndex].value;
}

