// JavaScript Document

function backgroundColor(element, color)
{
document.getElementById(element).style.background = color;	
		
}
function togglePref()
{
	document.getElementById('type_reference').style.display = "none";	
	document.getElementById('type_list').style.display = "none";	
	
	if(document.getElementById('menu_type').value == "list"){
		document.getElementById('type_reference').style.display = "none";	
		document.getElementById('type_list').style.display = "block";			
	}
	if(document.getElementById('menu_type').value == "special"){
		document.getElementById('type_reference').style.display = "block";	
		document.getElementById('type_list').style.display = "none";			
	}

}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}