<!--
function CheckSelectValue(FormValue)
{
	frmobj = document.forms[FormValue];
	if(document.all)
		{
			if(frmobj.ItemKey.value == '' || frmobj.ItemKey.selectedIndex == '')
			{
				return false;
			}
			else
				{
				if (frmobj.ItemKey.value == 'all')
					{											
					straction = "shop_justphones_sub.asp?ManKey=" + frmobj.ManufacturerKey.value
					frmobj.action = straction;
					frmobj.submit();					
					}
				else
					{
					straction = "shop_justphones_details.asp?ItemKey=" +  frmobj.ItemKey.value;
					frmobj.action = straction;
					frmobj.submit();
					}
				}
		}	
	else	
		{
			if(frmobj.ItemKey.options[frmobj.ItemKey.selectedIndex].value == "all")
			{
				straction = "shop_justphones_sub.asp?ManKey=" + frmobj.ManufacturerKey.value
				frmobj.action = straction;
				frmobj.submit();
			}else{
				straction = "shop_justphones_details.asp?ItemKey=" +  frmobj.ItemKey.options[frmobj.ItemKey.selectedIndex].value;
				frmobj.action = straction;
				frmobj.submit();
			}
		}
}
-->
