// JavaScript Document

<!--
menu_status = new Array();

//function showHideOLD(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';
//        }
//    }
//
//}

function showHide(theid,theurl,themode)
{

    if (document.getElementById)
    {
    	var switch_id = document.getElementById(theid);

      if(menu_status[theid] != 'show')
		{
			if (switch_id !=null) switch_id.className = 'show';
       	 	menu_status[theid] = 'show';
      }
		else
		{
         if (switch_id !=null) switch_id.className = 'hide';
            menu_status[theid] = 'hide';
      }
    }


    gosection (theurl, themode);

//    theval='';
//
//   if (theurl != '' )
//	theval = 'index.asp?t=' + theurl;
//    if (themode == 'Y')
//	theval = theval + '&a=' + themode;
//    if (theval != '')
//	top.index.location.href = theval;

}

function gosection (theurl,themode)
{

  theval='';

    if (theurl != '' )
	theval = 'index.asp?t=' + theurl;
    if (themode == 'Y')
	theval = theval + '&a=' + themode;
    if (theval != '')
	top.index.location.href = theval;
}

function gourl (theurl)
{

	parent.index.location.href = theurl;
}

//-->