
	function ap_set_submit (name)
	{
		getElem ('id', 'theSubmitter', null).value = name;
		return  true;
	}

	function ap_submit ()
	{
		document.theForm.submit ();
	}

	function ap_MouseOver (Index, p)
	{
		getElem ('id', 'Item_' + Index, null).src  =  p + '_img/Menu/active.png';
	}

	function ap_MouseOut (Index, p, t)
	{
		getElem ('id', 'Item_' + Index, null).src  =  p + '_img/Menu/' + t + '.png';
	}

