// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function showMe(entryid) {
	var thisInfo = document.getElementById(entryid).style;

	// If the entry is showing, hide it.
	if (thisInfo.display == "block") {
		thisInfo.display = "none";
	}
	else {
		// If the entry is hidden, show it.
		thisInfo.display = "block";
	}
	return false;
}

function swapMe(myGraphic)
{
    x = document.getElementById(myGraphic).src;
    x = x.split('/');
    
    i = x.length - 1;
    
    y = x[i];
    
    if (y == 'advSearch.gif') 
    {
      document.getElementById(myGraphic).src = 'img/simSearch.gif';
    }
    else 
    {
      document.getElementById(myGraphic).src = 'img/advSearch.gif';
    }
    
}

menu_status = new Array();
function showHide(theid){
if (document.getElementById) {
var switch_id = document.getElementById(theid);

if(menu_status[theid] != 'show') {
switch_id.className = 'show';
menu_status[theid] = 'show';
}else{
switch_id.className = 'hide';
menu_status[theid] = 'hide';
}
}
}


