<!-- 

// Used for displaying feat. business text
Block = {timer: null, current: null};
Block.show = function(id)
{
	if(this.timer) clearTimeout(this.timer);
	this.current = getObject(id)
	if(this.current == null) return
	
	this.current.style.display= 'block';
	this.current.style.visibility = 'visible';
}

Block.hide = function()
{
	if(this.current)
	{
		this.current.style.display = 'none';
		this.current.style.visibility = 'hidden';
		this.current = null
	}
}


function goto_URL(link)
{
	window.location.href = link;
}

function switch_bkgd(obj_id, new_color)
{
	obj = getObject(obj_id)
	if(obj == null) {return false}
	else
	{
		obj.style.backgroundColor = new_color;
	}	
}

function switch_border(obj_id, new_color)
{
	obj = getObject(obj_id)
	if(obj == null) {return false}
	else
	{
		obj.style.borderColor = new_color;
	}	
}


/* 
getObject(object)
* Select an object based on provided id 
*/
function getObject(obj) {
	// Netscape, Firefox
  if ( document.getElementById ) {
    obj = document.getElementById( obj );
	// Older IE
  } else if ( document.all ) {
    obj = document.all.item( obj );

  } else {
    obj = null;
  }
  return obj;
}
// -->
// Added sept1807 raj
function jumpTo(selectList)
{
	window.location.href = selectList.options[selectList.selectedIndex].value;
}