//=================================================
//  COMBO BOX JUMP FUNCTION
//=================================================

function JumpTo(sCurrentPage, sForm, sField)
{
	var iIndex  = eval ("document." + sForm + "." + sField + ".selectedIndex") + 1;
	var sTemp   = sCurrentPage + "#Item" + iIndex;

	window.location = sTemp;
}

//=================================================
//  E N D   O F   F I L E
//=================================================
