function show_detail(name) {
	if (document.getElementById)
		if (document.getElementById(name).style.display == '')
			document.getElementById(name).style.display = 'none';
		else
			document.getElementById(name).style.display = '';

}

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


