var myhash = "";
myhash=self.location.hash;
if (myhash != "")	{
	pos=0;
	pos=myhash.substring(2,myhash.length);
	if (pos>-1) {
		document.forms[0].Menu2.options[pos].selected = true;
	}
}
else	{
	document.forms[0].Menu2.options[0].selected = false;
}