function overMenuItem(element)
{
	element.parentNode.style.backgroundColor = '#006699';
	element.style.color = '#FFFFFF';
	element.style.cursor =  'pointer';
}
function outMenuItem(element)
{
	element.parentNode.style.backgroundColor = '#CCE3F0';
	element.style.color = '#006699';
}


function open_window(name, url, left, top, width, height, scrollbar, resizable)
{
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+', width='+width+',height='+height+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

function mailinglist(elm){
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else if (elm.value == "") elm.value = elm.base;
}
