function Show(CurrElem) { CurrElem.style.visibility = "visible"; }
function Hide(CurrElem) { CurrElem.style.visibility = "hidden"; } 

function ShowPic(imgDocID, imgObjName) { document.images[imgDocID].src = eval(imgObjName + ".src") }

function OpenSmallWin(URL,WIDTH,HEIGHT)
{
 window.open(URL, '_OpenSmallWin', 'resizable=yes,scrollbars=yes,status=0,width='+WIDTH+',height='+HEIGHT);
}

function JumpURL()
{
	if(document.selectanother.pdt.value != "")
	{
		window.location.href = document.selectanother.pdt.value;
	}
}