	function fnSend(Pitem)
		{
			switch(Pitem)
			{
				case 1 : 
					window.location.href = "index.asp" 
					break;
				case 2 :
					window.location.href = "menu_items_t.asp?ID=2" 
					break;
				case 3 :
					window.location.href = "visitors.asp"
					break;
				case 4 :
					window.location.href = "faq_list.asp"
					break;
				case 5 :
					window.location.href = "menu_items_t.asp?ID=3"
					break;
				case 6 : 
					window.location.href = "contact.asp" 
					break;
				case 7 : 
					window.location.href = "menu_items.asp?ID=4" 
					break;
				case 8 : 
					window.location.href = "menu_items.asp?ID=5" 
					break;
				case 9 : 
					window.location.href = "menu_items.asp?ID=6" 
					break;
				case 10 : 
					window.location.href = "menu_items.asp?ID=7" 
					break;
				case 11 : 
					window.location.href = "menu_items.asp?ID=8" 
					break;
				case 12 : 
					window.location.href = "menu_items.asp?ID=9" 
					break;
				case 13 : 
					window.location.href = "menu_items.asp?ID=10" 
					break;
				case 14 : 
					window.location.href = "register.asp" 
					break;																																			
			}					  
		}
		
		function open_URL(pID)
		{
			window.location.href = "menu_items.asp?ID="+pID
		}
		
		function open_cal(URL,ws,hs)		
		{
			winprops = 'height='+hs+',width='+ws+',top=0,left=0,scrollbars=no';
			lookupwin = window.open(URL, "_blank", winprops);		
		}
		
		function open_popup()
		{
			winprops = 'height=150,width=260,top=0,left=0,scrollbars=no';
			lookupwin = window.open("popup.asp", "lookup", winprops);		
		}		
		
		function fnMouseOut(Pitem)
		{
			Pitem.style.backgroundColor='#6487dc';	
			//Pitem.style.borderRight='black 2px solid';
			//Pitem.style.borderTop='#d6dff7 1px solid';
			//Pitem.style.borderLeft='#d6dff7 1px solid';
			//Pitem.style.borderBottom='black 2px solid';
			Pitem.style.color='#ffffff';
			Pitem.style.cursor = 'default';
		}
		function fnMouseOver(Pitem)
		{
			Pitem.style.backgroundColor='#d6dff7';	
			//Pitem.style.borderRight='#6487dc 1px solid';
			//Pitem.style.borderBottom='#6487dc 1px solid';
			//Pitem.style.borderTop='black 2px solid';
			//Pitem.style.borderLeft='black 2px solid';
			Pitem.style.color='#ff0000';	
			Pitem.style.cursor = 'hand';	
		}	
		
