﻿			function showpopup(theURL,winName,features) { //v2.0
  			window.open(theURL,winName,features);
			}

function goToURL(form)
  {
    var myindex=form.dropdownmenu.selectedIndex
    if(!myindex=="")
      {
        window.location.href=form.dropdownmenu.options[myindex].value;
      }
}
function ShowHide(shID)
{
	var myObj=document.getElementById(shID)
	if (myObj.style.display=='')
	{
		myObj.style.display='none'
	}
	else
	{
		myObj.style.display=''
	}	
}

