// JavaScript Document

// LIST ALL SHOW/HIDE ELEMENT IDS HERE
var menus_array = new Array ();
var menus_status_array = new Array ('0','1');// remembers state of swFirstches

function expand (theid,submenu,index) 
{
	
	if(menus_status_array[index]=='0')
	{
		menus_status_array[index]='1';
		theid.className='divider-nd_close';
		submenu.style.display='block';
	}
	else
	{
		menus_status_array[index]='0';
		theid.className='divider-nd_open';
		submenu.style.display='none';
	}
	
}

function v_popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=450');");
}



function afiseaza_regiune()
{
	var sel = document.getElementById("sel_reg");
	
	var reg_curenta = sel.options[sel.selectedIndex].value;
	
	var nr = sel.options.length;
	
	for(i=0;i<nr;i++){
		var tmp_val = sel.options[i].value;
		//alert(tmp_val);
		document.getElementById(tmp_val).style.display = 'none';
	}
	
	document.getElementById(reg_curenta).style.display = 'block';
	
}
// ==== pentru pop-up cu filmulete ===

function popWindow(wName){
	features = 'width=650,height=550,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no';
	pop = window.open('',wName,features);
	if(pop.focus){ pop.focus(); }
	return true;
}