	var icheck = new Array;
	var ilocationHomeCount  =0;
	function CheckImg(obj,indexcheck,value)
	{
		var hdField =document.getElementById("location");
		var statuscheck =!icheck[indexcheck];
		if (statuscheck)
		{
			if (ilocationHomeCount > 2){
				alert("Please specify only 3 locations ");
				return false;
			}else
			{
				ilocationHomeCount++;
				obj.src ="img/b-Radio_1.gif";
				hdField.value =hdField.value  +",["+value+"]";
				icheck[indexcheck] =!icheck[indexcheck];
			}
		}
		else
		{
			ilocationHomeCount--;
			obj.src ="img/b-Radio_2.gif";	
			hdField.value =hdField.value.replace(",["+value+"]","");
			icheck[indexcheck] =!icheck[indexcheck];
		}	
		
		
	}
	
	function CheckbyNameImg(objID,indexcheck,value)
	{
		var obj =document.getElementById(objID);
		
		CheckImg(obj,indexcheck,value);
	}
											
//'<%=Rs("INT_PROPERTIESLOCATION_ID")%>'
