// JavaScript Document

// LIST ALL SHOW/HIDE ELEMENT IDS HERE
var menus_array = new Array ();
var menus_status_array = new Array ('0','0','0','0','0','0');// remembers state of swFirstches
var img_close = 'images/img/expandbutton-close.gif';
var img_open = 'images/img/expandbutton-open.gif';


function expand (theid,submenu,index) 
{
	if(menus_status_array[index]=='0')
	{
		menus_status_array[index]='1';
		theid.src=img_close;
		submenu.style.display='block'
	}
	else
	{
		menus_status_array[index]='0';
		theid.src=img_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');");
}