/*
function Category_Change( newCat,newSubcat )
{
	var CategoryName = "";
	CategoryName = newCat.options[ newCat.selectedIndex ].value;
	alert(CategoryName)
	Service.useService("webservice/FobService.asmx?WSDL","FobService");
	ddSubcat=newSubcat
	intCallID = Service.FobService.callService( SubCat_Result, "GetSubCategory",CategoryName);
	
}
function SubCat_Result(result)
{
 F=ddSubcat
 F.disabled=true;
var SubCat = new Array();
  SubCat = result.value;
  alert(SubCat)
  while(F.options.length>0)
    {
	 deleteIndex=F.options.length-1;
	 F.options[deleteIndex]=null;
	} 
  for (var intCounter = 0;intCounter <= SubCat.length;intCounter++ )
  {
	if(intCounter==0)
	{
		var optOption = new Option( "Select any City",0 );
		F.options[ F.options.length ] = optOption;
	}
	else
	{
		var optOption = new Option( SubCat[ intCounter-1 ] );
		F.options[ F.options.length ] = optOption;
	}
  }
  if(SubCat.length>1)
   F.disabled=false;
  else
   F.disabled=true
 } 
*/
 function makevisible(cur,which)
{
//0.6 for mouse out opticity
strength=(which==0)? 1 : 0.95
if (cur.style.MozOpacity)
cur.style.MozOpacity=strength
else if (cur.filters)
cur.filters.alpha.opacity=strength*100
}

function CloseWin()
{
	//alert("dsfdsF");
	divHome.style.visibility="hidden"
	divHome.style.height="0px"
}
