// JavaScript Document

function show_this(id)
{
	
	var elem;
	m_id=id;

 if (document.getElementById &&

    (elem=document.getElementById(m_id)) ) {

                  if (elem.style) 
				  {
					  elem.style.cursor='pointer';
					    elem.style.backgroundImage='url(../img/t120-up2.png)';
				  }

 }


	
}

function hide_this(id) 
{
	var elem;
	m_id=id;

 if (document.getElementById &&

    (elem=document.getElementById(m_id)) ) {

                  if (elem.style) 
				  {
					  elem.style.cursor='default';
					  elem.style.backgroundImage='url(../img/t120-up.png)';
				  }

 }

}

function open_this(str)
 {
	document.location.href=str;
}
