<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Web Subscription Form (ERA-Jarene Chuang)</title>
<style type="text/css">
<!--
.style2 {color: #FF0000}
.style3 {
	color: #666666;
	font-style: italic;
}
.style6 {color: #FF0000; font-weight: bold; }
-->
</style>
</head>

<body>
<script language="javascript">


	function initialHiddenDivs()
	{
		var divID_1 = 'tenureHDB';
		var divID_2 = 'locListHDB';
		var divID_3 = 'locTitleHDB';
		//var divID_4 = 'locTown';
		var divID_5 = 'tenantOptions';
		var divID_6 = 'bedRmHDBRent';
		var divID_7 = 'bedRmPrvRent';
		var divID_8 = 'landLordOptions';
		var divID_9 = 'sellerOptions';
		var divID_10 = 'bedRmHDBBuyer';
		//var divID_11 = 'seller_LocHDB';				
		var divID_12 = 'bedRmHDBLL';
		//var divID_13 = 'bedRmHDBRent';
		
		hideDiv(divID_1);
		hideDiv(divID_2);
        hideDiv(divID_3);
		//hideDiv(divID_4);
		hideDiv(divID_5);
		hideDiv(divID_6);
		hideDiv(divID_7);
		hideDiv(divID_8);
		hideDiv(divID_9);
		hideDiv(divID_10);
		//hideDiv(divID_11);
		hideDiv(divID_12);
		//hideDiv(divID_13);
	}
	
	function hideDiv(id)
	{
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(id).style.display = 'none';
		}
		else {
			if (document.layers) { // Netscape 4
				document.id.display = 'none';
			}
			else { // IE 4
				document.all.id.style.display = 'none';
			}
		}
	}
	function displayDiv(id)
	{	  
		if (document.getElementById) { // DOM3 = IE5, NS6			
			document.getElementById(id).style.display = 'block';			
		}
		else {
			if (document.layers) { // Netscape 4
				document.id.display = 'block';
				
			}
			else { // IE 4
				document.all.id.style.display = 'block';				
			}
		}
	}
	
	function switchProspectType(prospect)
	{
		//alert('in function, value = '+ prospect.value );
		if (prospect.value == "7") // tenant
		{
			hideDiv('buyerOptions');
			hideDiv('landLordOptions');
			displayDiv('tenantOptions');
			hideDiv('sellerOptions');
			hideDiv('rentLocHDB');			
			displayDiv('bedRmPrvRent');
			
			// Clear all other data
			document.form1.txtCustom1.value = ""; // buying size
			document.form1.txtCustom5.value = ""; // Selling Location
			document.form1.txtCustom8.value = ""; // Comments 
			document.form1.txtCustom9.value = ""; // Reason for buying
			document.form1.txtCustom10.value = ""; // Tenure
			document.form1.txtCustom12.value = ""; // Buying Property Age
			document.form1.txtCustom13.value = ""; // top 3 concerns
			document.form1.txtCustom14.value = "";	// Top 3 Projects		 
			document.form1.txtCustom15.value = ""; // Timeline(buying)
			document.form1.txtClass4.value = ""; // budget
			document.form1.txtClass6.value = ""; // Selling Property Type

			
			
		}
		else if (prospect.value == "6") // landlord
		{
			hideDiv('buyerOptions');
			hideDiv('tenantOptions');
			hideDiv('sellerOptions');
			hideDiv('rentLocHDB');			
			//hideDiv('LL_LocHDB');
			displayDiv('landLordOptions');
			//displayDiv('bedRmPrvRent');
			
			
			// Clear all other data
			document.form1.txtCustom1.value = ""; // buying size
			//document.form1.txtCustom2.value = ""; // rm type
			document.form1.txtCustom5.value = ""; // Selling Location
            document.form1.txtCustom6.value = ""; // Buying Location
			document.form1.txtCustom8.value = ""; // Comments 
			document.form1.txtCustom9.value = ""; // Reason for buying
			document.form1.txtCustom10.value = ""; // Tenure
			document.form1.txtCustom12.value = ""; // Buying Property Age
			document.form1.txtCustom13.value = ""; // top 3 concerns
			document.form1.txtCustom14.value = "";	// Top 3 Projects		 
			document.form1.txtCustom15.value = ""; // Timeline(buying)
			document.form1.txtClass4.value = ""; // budget
			document.form1.txtClass7.value = ""; // Buying Property Type
			
			
		}
		else if (prospect.value == "1" || prospect.value == "2" )// buyer
		{
			displayDiv('buyerOptions');
			hideDiv('tenantOptions');
			hideDiv('landLordOptions');
			hideDiv('sellerOptions');
			
			document.form1.txtCustom5.value = ""; // Selling location
			document.form1.txtCustom8.value = ""; // Comments
			document.form1.txtClass6.value = ""; //  Selling Property Type
			
		}
		else if (prospect.value == "3") // Seller
		{
		    hideDiv('buyerOptions');
			hideDiv('tenantOptions');
			hideDiv('landLordOptions');
			displayDiv('sellerOptions');
			hideDiv('rentLocHDB');			
			//hideDiv('LL_LocHDB');
			
			// Clear all other data
			document.form1.txtCustom1.value = ""; // buying size
			document.form1.txtCustom2.value = ""; // rm type
            document.form1.txtCustom6.value = ""; // Buying Location
			document.form1.txtCustom9.value = ""; // Reason for buying
			document.form1.txtCustom10.value = ""; // Tenure
			document.form1.txtCustom12.value = ""; // Buying Property Age
			document.form1.txtCustom13.value = ""; // top 3 concerns
			document.form1.txtCustom14.value = "";	// Top 3 Projects		 
			document.form1.txtCustom15.value = ""; // Timeline(buying)
			document.form1.txtClass4.value = ""; // budget
			document.form1.txtClass7.value = ""; // Buying Property Type
			
						
					
		}
		else // buying and selling
		{
			 displayDiv('buyerOptions');
			 hideDiv('tenantOptions');
			 hideDiv('landLordOptions');
			 displayDiv('sellerOptions');
			 hideDiv('rentLocHDB');			
			 //hideDiv('LL_LocHDB');
			 		
		}
	
	}
	
	function switchPropType()
	{
	        var chked = 0;
			var hdbChked = false;
			
			//alert("Ppty type: "+chk_PropType);
			//var sel=document.getElementById("list_Sell_LocPrv");
			 
			//alert("| "+);			
			var chk_PropType = document.form1.chkPropType;
			
			if (chk_PropType != null)
			{			
				for ( i = 0; i < chk_PropType.length; i++)
				{
				   
					 if (chk_PropType[i].checked == true)
					 {
						 chked++;
						
						 if (chk_PropType[i].value == 'hdb')
						 {
								hdbChked = true;
						 }
					 }
				}
			    //alert("chked = "+chked +" HDB = "+hdbChked);
				if(chked == 1 && hdbChked)
				{
						displayDiv('tenureHDB');
						displayDiv('locListHDB');
						displayDiv('locTitleHDB');
						//displayDiv('locTown');
						displayDiv('bedRmHDBBuyer');					
						
						hideDiv('tenurePrv');
						hideDiv('propAgePrv');
						hideDiv('locListPrv');
						//hideDiv('locDist');
						hideDiv('locTitlePrv');
						hideDiv('bedRmPrv');
						hideDiv('prvPropArea');
				}
				else
				{
						hideDiv('tenureHDB');
						hideDiv('locListHDB');
						hideDiv('locTitleHDB');
						//hideDiv('locTown');
						hideDiv('bedRmHDBBuyer');										
											
						displayDiv('tenurePrv');
						displayDiv('propAgePrv');
						displayDiv('locListPrv');
						//displayDiv('locDist');
						displayDiv('locTitlePrv');
						displayDiv('bedRmPrv');
						displayDiv('prvPropArea');
				}
		  }
			
	}
	
	function switchSellerPropType(chk_PropType)
	{
	        var chked = 0;
			var hdbChked = false;
						
			for ( i = 0; i < chk_PropType.length; i++)
			{
			   
				 if (chk_PropType[i].checked == true)
				 {
				 	 chked++;
					
					 if (chk_PropType[i].value == 'hdb')
					 {
					 		hdbChked = true;
					 }
				 }
			}
			
			if(chked == 1 && hdbChked)
			{
					
				    //displayDiv('seller_LocHDB');
					displayDiv('bedRmHDBSell');										
					
					//hideDiv('seller_LocPrv');
					hideDiv('bedRmPrvSell');
					hideDiv('bedRmPrvRent');
					hideDiv('prvPropAreaSeller');
			}
			else
			{					
					//hideDiv('seller_LocHDB');
					hideDiv('bedRmHDBSell');										
										
					//displayDiv('seller_LocPrv');
					displayDiv('bedRmPrvSell');
					displayDiv('prvPropAreaSeller');
			}
			
	}
	
	function switchRentPropType(chk_rentPropType)
	{
	        var chked = 0;
			var hdbChked = false;
						
			for ( i = 0; i < chk_rentPropType.length; i++)
			{
			   
				 if (chk_rentPropType[i].checked == true)
				 {
				 	 chked++;
					
					 if (chk_rentPropType[i].value == 'hdb')
					 {
					 		hdbChked = true;
					 }
				 }
			}
			
			if(chked == 1 && hdbChked)
			{
					
				    displayDiv('rentLocHDB');
					displayDiv('bedRmHDBRent');
					hideDiv('rentLocPrv');
					hideDiv('bedRmPrvRent');
					hideDiv('prvPropArea');
			}
			else
			{
					hideDiv('rentLocHDB');										
					displayDiv('rentLocPrv');
					hideDiv('bedRmHDBRent');
					displayDiv('bedRmPrvRent');
					displayDiv('prvPropArea');
			}
			
	}
	
	function switchLLPropType(chk_LLPropType)
	{
	        var chked = 0;
			var hdbChked = false;
						
			for ( i = 0; i < chk_LLPropType.length; i++)
			{
			   
				 if (chk_LLPropType[i].checked == true)
				 {
				 	 chked++;
					
					 if (chk_LLPropType[i].value == 'hdb')
					 {
					 		hdbChked = true;
					 }
				 }
			}
			
			
			
			if(chked == 1 && hdbChked)
			{					
				    //displayDiv('LL_LocHDB');
					displayDiv('bedRmHDBLL');
					//hideDiv('LL_LocPrv');
					hideDiv('bedRmPrvLL');
					hideDiv('prvPropArea');
					
			}
			else
			{
					//hideDiv('LL_LocHDB');										
					//displayDiv('LL_LocPrv');
					hideDiv('bedRmHDBLL');
					displayDiv('bedRmPrvLL');
					displayDiv('prvPropArea');					
			}
			
	}

function verifyMandatory()
{
    var propType;
	var pass = true;
	
  if (validateName())
  {
	if (validateEmail())
	{
		if (validateMobile())
		{
     
	        var transType = validateRdo(document.form1.rdo_purpose, "Please indicate the type of transaction you are interested in");
			if (transType != "")
			{	
				//alert("rdo_purpose="+transType );
					 if (transType == '6') // LandLord
					 {
					        propType = validateRdo(document.form1.chk_LLPropType, "Please select your property type.");
					   					    					 															
					   if (propType == "")
					   {
							    return false;
					   }	
                       
					   if (document.form1.txtLLAddr != null && document.form1.txtLLAddr.value == "")
					   {
								alert("Please enter the address of your property.");
								document.form1.form1.txtLLAddr.focus();
								return false;
					   }
					   					   						
					   if (propType == "hdb")
					   {
					        /*
							if (document.form1.list_Rent_locHDB1 != null && document.form1.list_Rent_locHDB1.value == "No")
							{
								alert("Please select your location of your property.");
								document.form1.list_Rent_locHDB1.focus();
								return false;
							}
							*/							
							var rmtype = validateRdo(document.form1.chk_rm_LLHDB, "Please select the number of rooms.");
						  //alert ("list_Rent_locHDB1="+rmtype);
						    if (rmtype == "")
							{
								return false;
							}
					   }
					   else								   
					   {
					        /*
							if (document.form1.list_Rent_locPrv1 != null && document.form1.list_Rent_locPrv1.value == "No")
							{
								alert("Please select your location of your property.");
								document.form1.list_Rent_locPrv1.focus();
								return false;
							}
							*/
							var rmtype = validateRdo(document.form1.chk_rm_LLPrv, "Please select the number of rooms."); 																						
						 //alert ("list_Rent_locPrv1="+rmtype);
							if (rmtype == "")
							{
								return false;
							}
					   }	
								   
							
						//alert("rentExp="+document.form1.rentExp +" rentalDate="+document.form1.rentalDate);	
							if (document.form1.rentExp != null && document.form1.rentExp.value == "")
							{
								alert("Please enter the Expected rental income.");
								document.form1.rentExp.focus();
								return false;
							}
							
							if (document.form1.rentalDate != null && document.form1.rentalDate.value == "")
							{
								alert("Please enter the date by which your property is available for rent.");
								return false;
								//document.form1.rentalDate.focus();
							}							
							
					 }
					 else if(transType == '7') // Tenant		
					 {
					 		if (document.form1.rentBudget != null && document.form1.rentBudget.value == "")
							{
									alert("Please enter your rental budget.");
									document.form1.rentBudget.focus();
									return false;
							}
					 
					 		propType = validateRdo(document.form1.chk_rentPropType, "Please select the property type.");
							if (propType == "")
							{
							    return false;
							}						
							else if (propType == "hdb")
					   		{
					  			//alert ("HDB Location = "+document.form1.list_Ten_locHDB1.value);
									if (document.form1.list_Ten_locHDB1 != null && document.form1.list_Ten_locHDB1.value == "No")
									{
									 		alert("Please select your location that you wish to rent.");
									   		document.form1.list_Ten_locHDB1.focus();
											return false;
									}
									var rmType = validateRdo(document.form1.chk_rm_rentHDB, "Please select the number of rooms.");
									if (rmType == "")
									{
										return false;
									}
							}
							else
							{
									if (document.form1.list_Ten_locPrv1 != null && document.form1.list_Ten_locPrv1.value == "No")
									{
									    	alert("Please select your location that you wish to rent.");
											document.form1.list_Ten_locPrv1.focus();
											return false;
									}
									
									var rmType = validateRdo(document.form1.chk_rm_rentPrv, "Please select the number of rooms.");
									if (rmType == "")
									{
										return false;
									}
							}	
								
							if (document.form1.tenantRentalDate != null && document.form1.tenantRentalDate.value == "")
							{
									alert("Please enter the date by which you would like to rent a place.");
									return false;
							}														 														
							
					 }
					 else if(transType == '1' || transType == '2' ) // Buyer
					 {
					 		pass = validateBuyer();					        																
					 }
					 else if(transType == '3') //Seller
					 {					 														
							pass = validateSeller();	
					 }
					 else //Buy & Sell
					 {
					 		pass = validateBuyer();		
							if (pass)
							{
								pass = validateSeller();								
							}	
							
																			
					 }
					 
					 if (pass)
					 {					 				
	 	    				assignAllParams();
							/*
							alert("[B] Buying Size: "+document.form1.txtCustom1.value+"\n" +
								  "[B] Rm Type: "+document.form1.txtCustom2.value+"\n" +
								  "[S] Property Age: "+document.form1.txtCustom3.value+"\n" +
								  "[?] Requirements: "+document.form1.txtCustom4.value+"\n" +
								  "[S] Selling Location: "+document.form1.txtCustom5.value+"\n" +
								  "[B] Buying Location: "+document.form1.txtCustom6.value+"\n" +
								  "[B] Comments: "+document.form1.txtCustom8.value+"\n" +
								  "[B] Reason for Buying: "+document.form1.txtCustom9.value+"\n" +
								  "[B] Tenure: "+document.form1.txtCustom10.value+"\n" +
								  "[B] Buying Property Age: "+document.form1.txtCustom12.value+"\n" +
								  "[B] Top 3 Concern: "+document.form1.txtCustom13.value+"\n" +
								  "[B] Top 3 Projects: "+document.form1.txtCustom14.value+"\n" +
								  "[B] Timeline: "+document.form1.txtCustom15.value+"\n" +
								  "[?] Client Type: "+document.form1.txtClass1.value+"\n" +								  								  
								  "[B] Budget: "+document.form1.txtClass4.value+"\n" +	
	  							  "[S] Selling Property Type: "+document.form1.txtClass6.value+"\n" +	
 								  "[B] Buying Property Type: "+document.form1.txtClass7.value+"\n" 
							);
							*/
							
							return true;		
					 }
									 
					 return false;			 				
			}
			
	    }
	}
  }
  	
  return false; 
}

function validateSeller()
{
			var propType = validateRdo(document.form1.chk_SellPropType, "Please select your property type.");							
			
			if (propType == "")
			{
				return false;
			}			
			
			if (document.form1.txtSellAddr != null && document.form1.txtSellAddr.value == "")
			{
					alert("Please enter the address of your property.");
				    document.form1.form1.txtSellAddr.focus();
				    return false;
			}
							
			if (propType == "hdb")
			{
			      /*
					if (document.form1.list_Sell_LocHDB != null && document.form1.list_Sell_LocHDB.value == "No")
					{
						 alert("Please select your location of your property.");
						 document.form1.list_Sell_LocHDB.focus();
						 return false;
					}
				   */
			}
			else
			{
			       /*
					if (document.form1.list_Sell_LocPrv != null && document.form1.list_Sell_LocPrv.value == "No")
					{
						alert("Please select your location of your property.");
						document.form1.list_Sell_LocPrv.focus();
						return false;
					}
					*/					
					
					if (document.form1.propAreaSell != null && document.form1.propAreaSell.value == "")
					{
							alert("Please enter the built-in area of your property.");
							document.form1.propAreaSell.focus();
							return false;
					}
			}
			
			var rmtype = validateRdo(document.form1.chk_rm_sell, "Please select the number of rooms.");
			
			if (rmtype == "")
			{
					return false;
			}		
			
			return true;
}

function validateBuyer()
{
		var propType = validateRdo(document.form1.chkPropType, "Please select the property type.");
							 									
		if (propType == "")
		{
			return false;
		}
		//alert (document.form1.list_budget.value);
		if (document.form1.list_budget != null && document.form1.list_budget.value == "0")
		{
			   alert ("Please select your budget.");
			   document.form1.list_budget.focus();
			   return false;
		}
		
		var propAge = validateRdo(document.form1.chk_propAge, "Please select the property age.");
		
		if (propAge == "")
		{
			   return false;
		}														
		
		if (propType == "hdb") 
		{
		//alert (document.form1.list_locHDB1.value );
				if (document.form1.list_locHDB1 != null &&  document.form1.list_locHDB1.value == "No")
				{
						alert("Please select your location of the property.");
						document.form1.list_locHDB1.focus();
						return false;
				}
				
				var rmtype = validateRdo(document.form1.chk_rm, "Please select the number of rooms.");

				//clear the values
				if (document.form1.rdo_tenure != null)
					document.form1.rdo_tenure.value = "";
				if (document.form1.propArea != null)	
					document.form1.propArea.value = ""; 
				
				if (rmtype == "")
				{
					return false;
				}
		}
		else
		{
				var tenure = validateRdo(document.form1.rdo_tenure, "Please select the tenure of the property.");
				
				if (tenure == "")
				{
					return false;
				}
				
				if (document.form1.list_loc1 != null &&  document.form1.list_loc1.value == "No")
				{
						alert("Please select your location of the property.");
						document.form1.list_loc1.focus();
						return false;
				}
				
				var rmtype = validateRdo(document.form1.chk_rm, "Please select the number of rooms.");
				
				if (rmtype == "")
				{
						return false;
				}
				
				if (document.form1.propArea != null && document.form1.propArea.value == "")
				{
						alert ("Please enter the size of the property.");
						document.form1.propArea.focus();
						return false;
				}
		}
														
		
		var timeline = validateRdo(document.form1.rdo_timeline, "Please select the timeline.");
		
		if(timeline == "")
		{
			return false;
		}				

		return true;
}


/**
 * DHTML date validation script. Courtesy of SmartWebby.com (http://www.smartwebby.com/dhtml/)
 */
// Declaring valid date character, minimum year and maximum year
var dtCh= "/";
var minYear=1900;
var maxYear=2100;

function isInteger(s){
	var i;
    for (i = 0; i < s.length; i++){   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}

function stripCharsInBag(s, bag){
	var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++){   
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}

function daysInFebruary (year){
	// February has 29 days in any year evenly divisible by four,
    // EXCEPT for centurial years which are not also divisible by 400.
    return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
}
function DaysArray(n) {
	for (var i = 1; i <= n; i++) {
		this[i] = 31
		if (i==4 || i==6 || i==9 || i==11) {this[i] = 30}
		if (i==2) {this[i] = 29}
   } 
   return this
}

function isDate(dtStr)
{
	var daysInMonth = DaysArray(12)
	var pos1=dtStr.indexOf(dtCh)
	var pos2=dtStr.indexOf(dtCh,pos1+1)
	var strDay=dtStr.substring(0,pos1)
	var strMonth=dtStr.substring(pos1+1,pos2)
	var strYear=dtStr.substring(pos2+1)
	strYr=strYear
	if (strDay.charAt(0)=="0" && strDay.length>1) strDay=strDay.substring(1)
	if (strMonth.charAt(0)=="0" && strMonth.length>1) strMonth=strMonth.substring(1)
	for (var i = 1; i <= 3; i++) {
		if (strYr.charAt(0)=="0" && strYr.length>1) strYr=strYr.substring(1)
	}
	month=parseInt(strMonth)
	day=parseInt(strDay)
	year=parseInt(strYr)
	if (pos1==-1 || pos2==-1){
		alert("The date format should be : mm/dd/yyyy")
		return false
	}
	if (strMonth.length<1 || month<1 || month>12){
		alert("Please enter a valid month")
		return false
	}
	if (strDay.length<1 || day<1 || day>31 || (month==2 && day>daysInFebruary(year)) || day > daysInMonth[month]){
		alert("Please enter a valid day")
		return false
	}
	if (strYear.length != 4 || year==0 || year<minYear || year>maxYear){
		alert("Please enter a valid 4 digit year between "+minYear+" and "+maxYear)
		return false
	}
	if (dtStr.indexOf(dtCh,pos2+1)!=-1 || isInteger(stripCharsInBag(dtStr, dtCh))==false){
		alert("Please enter a valid date")
		return false
	}
return true
}

function validateName()
{
   
	if(document.form1.txtFirstName.value == "")
	{
		alert ("Please enter your first name  ");
		document.form1.txtFirstName.focus();
				
		return false;
	}
	else if (document.form1.txtLastName.value == "")
	{
		
			alert ("Please enter your last name  ");
			document.form1.txtLastName.focus();
			return false;
	}
	else
	{
		return true;
	}

}

function validateEmail()
{
	valid = true;
    txt = "";
		
		if(document.form1.txtEmail.value == "" ||
			document.form1.txtEmail.value.indexOf("@")<1 ||
			document.form1.txtEmail.value.indexOf(".")==-1 ||
			document.form1.txtEmail.value.indexOf(",")!=-1 ||
    		document.form1.txtEmail.value.indexOf(" ")!=-1 ||
    		document.form1.txtEmail.value.length<6)
		{
			txt = txt + "Please Enter a Valid Email Address\n";
			valid = false;
		}
 
        if(valid==false)
        {
			alert(txt);
			document.form1.txtEmail.focus();
	    }
 
		return valid;
}

function validateMobile()
{
  
    var mobNo = document.form1.txtMobile.value;
	if(mobNo == "")
	{
		alert ("Please enter your mobile number ");
		document.form1.txtMobile.focus();
		return false;
	}
	
	// check if all numerical
	if (isNaN(mobNo))
	{
		alert ("Please enter a valid mobile number ");
		document.form1.txtMobile.focus();
		return false;
	}					
	
	return true;
}

function validateRdo(rdo , msg)
{
	if (rdo != null)
	{
		for (var f = 0; f < rdo.length ; f++)
		{
			if (rdo[f].checked)
			{
			 	return rdo[f].value;
			}	
		}
		alert(msg);
		
		return "";
	}
	
	return null;
}



function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

function assignAllParams()
{
     
      if(document.form1.rdo_purpose != null )
      {
	  		var isBuyer = false;
			var isSeller = false;
			var isTenant = false;
			var isLandLord = false;
			
			var clientupdates = "";
			if (document.form1.chk_info1.checked)
			{
				 clientupdates += "Send general property information monthly. ";
			}
			if (document.form1.chk_info2.checked)
			{
				 clientupdates += "Send bi-weekly property news. ";
			}
			if (document.form1.chk_info3.checked)
			{
				 clientupdates += "Just help once. ";
			}
			document.form1.txtCustom8.value = clientupdates;
	         // alert (clientupdates);
			
			 var pur = 0;
			 for (var c = 0; c < document.form1.rdo_purpose.length && pur == 0; c++)
			 {
			        if (document.form1.rdo_purpose[c].checked)
					     pur = document.form1.rdo_purpose[c].value;
			 }		   
		 //  alert (pur);
	  		switch(pur)
			{
				case '1': // Buyer
						document.form1.txtClass1.value=12665;
						isBuyer = true;
						break;
				case '2': // Investor
				 		document.form1.txtClass1.value=12813;
						isBuyer = true;
						break;		
				case '3': // Seller
				   		document.form1.txtClass1.value=12666;
						isSeller = true;
						break;
				case '4':  //Prospect - Buyer / Seller
				   		document.form1.txtClass1.value=12683;
						isSeller = true;
						isBuyer = true;
						break;  
				case '5':  //Prospect - Seller / Buyer
				   		document.form1.txtClass1.value=12684;
						isSeller = true;
						isBuyer = true;
						break;       
        			case '6':  //LandLord
				   		document.form1.txtClass1.value=12685;
						isLandLord = true;
						break;    
				case '7':  //Tenant
				   		document.form1.txtClass1.value=12686;
						isTenant = true;
						break;    
			   	default:
					  	document.form1.txtClass1.value=12664;
					  	break;
			}
			
			
			//alert (isBuyer);						
			if (isBuyer)
			{			 
					var propbuy = "";
			              // Property Type 										
					if (document.form1.chkPropType != null )	
					{
							
							
							for (var a = 0; a < document.form1.chkPropType.length ; a++)
							{
									 if (document.form1.chkPropType[a].checked)
									 {
											if (document.form1.chkPropType[a].value == "hdb" )
												propbuy = "2451";
											if (document.form1.chkPropType[a].value == "condo" )	
												propbuy = "2452";
											if (document.form1.chkPropType[a].value == "landed" )	
												propbuy = "2453";
											if (document.form1.chkPropType[a].value == "commercial" )	
												propbuy = "2454";	
											if (document.form1.chkPropType[a].value == "overseas" )	
												propbuy = "2461";	
									}
							}
			           //alert("PropType: "+propbuy);
							document.form1.txtClass7.value = propbuy;
					}
					
                     //alert("budget: "+document.form1.list_budget.value );
					// budget
					if (document.form1.list_budget != null && document.form1.list_budget.value != null)
					{
							if (document.form1.list_budget.value == '200K')  
								document.form1.txtClass4.value = '7202';
							if (document.form1.list_budget.value == '250K')  
								document.form1.txtClass4.value = '7203';								      
							if (document.form1.list_budget.value == '300K')  
								document.form1.txtClass4.value = '7204';
							if (document.form1.list_budget.value == '350K')  
								document.form1.txtClass4.value = '7205';
							if (document.form1.list_budget.value == '400K')  
								document.form1.txtClass4.value = '7206';	
							if (document.form1.list_budget.value == '450K')  
								document.form1.txtClass4.value = '7207';	
							if (document.form1.list_budget.value == '700K')  
								document.form1.txtClass4.value = '7208';								
							if (document.form1.list_budget.value == '800K')  
								document.form1.txtClass4.value = '7209';
							if (document.form1.list_budget.value == '1M')  
								document.form1.txtClass4.value = '7210';
						    	if (document.form1.list_budget.value == '1.5M')  
								document.form1.txtClass4.value = '7211';
							if (document.form1.list_budget.value == '2M')  
								document.form1.txtClass4.value = '7212';
							if (document.form1.list_budget.value == '2.5M')  
								document.form1.txtClass4.value = '7213';
							if (document.form1.list_budget.value == '3M')  
								document.form1.txtClass4.value = '7214';
							if (document.form1.list_budget.value == '3.5M')  
								document.form1.txtClass4.value = '7215';
							if (document.form1.list_budget.value == '4M')  
								document.form1.txtClass4.value = '7216';							
							if (document.form1.list_budget.value == '5M')  
								document.form1.txtClass4.value = '7217';
							if (document.form1.list_budget.value == '5MM')  
								document.form1.txtClass4.value = '7218';

					}
					
					//alert("area: "+document.form1.propArea.value );
					// buying size
					if (document.form1.propArea != null && document.form1.propArea.value != null)
							document.form1.txtCustom1.value = document.form1.propArea.value;																		
																				
					// Reason for buying
					if (document.form1.txtCustom1.value != null)
					{
						if (document.form1.txtClass1.value == "12665")	
							document.form1.txtCustom9.value = "Buying for own stay";
						if (document.form1.txtClass1.value == "12813")	
							document.form1.txtCustom9.value = "Buying to invest";
						if (document.form1.txtClass1.value == "12683")	
							document.form1.txtCustom9.value = "Buying before selling";
						if (document.form1.txtClass1.value == "12684")	
							document.form1.txtCustom9.value = "Selling before buying";			
					}									
						
				//alert ("Reason: "+document.form1.txtCustom9.value);
				//alert ("Concern: "+document.form1.list_con1.value+"|"+document.form1.list_con2.value +"|"+document.form1.list_con3.value);	
				// Top 3 concerns
				if (document.form1.list_con1 != null)
					document.form1.txtCustom13.value = "1. "+document.form1.list_con1.value;
				if (document.form1.list_con2 != null)
					document.form1.txtCustom13.value += ", 2. "+document.form1.list_con2.value;
				if (document.form1.list_con3 != null)
					document.form1.txtCustom13.value += ", 3. "+document.form1.list_con3.value;										
                
				// Top 3 Projects
				if (document.form1.txt_proj != null && document.form1.txt_proj.value != null)
				{
					document.form1.txtCustom14.value = document.form1.txt_proj.value;
				}
				
				// Buying Timeline
				if (document.form1.rdo_timeline != null)
				{
				     	for (var b = 0; b < document.form1.rdo_timeline.length; b++)
					 {
					        if (document.form1.rdo_timeline[b].checked)
							{
						 		document.form1.txtCustom15.value = document.form1.rdo_timeline[b].value;
								//alert ("Timeline: "+document.form1.txtCustom15.value);
							}
					 }
				}
				
				//alert ("Tenure: "+document.form1.txtCustom10.value +"\n Concern: "+document.form1.txtCustom13.value+"\n 3 Projs: "+document.form1.txt_proj.value );
					// RM type
					if (document.form1.chk_rm != null)
					{
					        var rmType = "";
							 
					        for (var t = 0; t < document.form1.chk_rm.length; t++)
							{ 
								  if (propbuy == "2451" && (t >= 0 && t <= 8))
								  {
								        //Hidden Prv Ppty options
								  }
								  else
								  {	
							
										if (document.form1.chk_rm[t].checked)
										{																									
											if (rmType == "")					
												rmType += document.form1.chk_rm[t].value;
											else
												rmType += ", "+document.form1.chk_rm[t].value;	
												
												
										}
								  }	
							}
							//alert("rm_type: "+rmType);	
							document.form1.txtCustom2.value = rmType;
					}
					
					// buying Property Age
					if (document.form1.chk_propAge != null)
					{
					        var age = "";														
							
							for (var t2 = 0; t2 < document.form1.chk_propAge.length; t2++)
							{ 
								  if (propbuy == "2451" && (t2 == 1 || t2 == 2 || t2 == 3))
								  {
								        //Hidden Prv Ppty options
								  }
								  else
								  {	
										if (document.form1.chk_propAge[t2].checked)
										{														
												if (age == "")					
													age = document.form1.chk_propAge[t2].value;
												else
													age += ", "+document.form1.chk_propAge[t2].value;	
													
												//alert("Age: "+age);		
										}
								 }																					
												
							}
							//alert("Age: "+age);	
							document.form1.txtCustom12.value = age;
					}
				
				
					if (propbuy != "2451")
					{												
							//alert("Prv Loc: "+document.form1.list_loc1.value+"|"+document.form1.list_loc2.value+"|"+document.form1.list_loc3.value);	
					
							// Buying location
							if (document.form1.list_loc1 != null && document.form1.list_loc1.value != "No")
								document.form1.txtCustom6.value = document.form1.list_loc1.value;
							if (document.form1.list_loc2 != null && document.form1.list_loc2.value != "No")
								document.form1.txtCustom6.value += ", " + document.form1.list_loc2.value;
							if (document.form1.list_loc3 != null && document.form1.list_loc3.value != "No")
								document.form1.txtCustom6.value += ", " + document.form1.list_loc3.value;	
															
							// Tenure 
							if (document.form1.rdo_tenure != null)
							{
									for (var g = 0; g < document.form1.rdo_tenure.length; g++)
									{
											if(document.form1.rdo_tenure[g].checked)
												document.form1.txtCustom10.value = document.form1.rdo_tenure[g].value;
									}
							}					
											
					}											
					else
					{
							//alert("HDB Loc: "+document.form1.list_locHDB1.value);	
					
							// Buying location
							if (document.form1.list_locHDB1 != null && document.form1.list_locHDB1.value != "No")
								document.form1.txtCustom6.value = document.form1.list_locHDB1.value;
							
							document.form1.txtCustom10.value = "";	
							
					}
					
					//alert ("Tenure= "+document.form1.txtCustom10.value);
			}
			
			//alert ("Buying Location: "+document.form1.txtCustom6.value);
			
			//alert("Seller = "+isSeller);
			if (isSeller)			
			{
			
				    var propsell = "";
			        // Property Type 										
					if (document.form1.chk_SellPropType != null )					
					{
							
							
							for (var a = 0; a < document.form1.chk_SellPropType.length && propsell == ""; a++)
							{
									 if (document.form1.chk_SellPropType[a].checked)
									 {
											if (document.form1.chk_SellPropType[a].value == "hdb" )
												propsell = 3699;
											if (document.form1.chk_SellPropType[a].value == "condo" )	
												propsell = 3700;
											if (document.form1.chk_SellPropType[a].value == "landed" )	
												propsell = 3701;
											if (document.form1.chk_SellPropType[a].value == "commercial" )	
												propsell = 3702;	
											if (document.form1.chk_SellPropType[a].value == "overseas" )	
												propsell = 3703;	
												
									}
							}
							//alert("PropType: "+propsell);
							document.form1.txtClass6.value = propsell;
					}
					
			
					/*
					var sel=document.getElementById("list_Sell_LocPrv");
					var index = sel.selectedIndex;
					alert("| "+sel.options[index].innerHTML);
					*/
					//alert ("Seller addr = "+document.form1.txtSellAddr.value);
					
					if (document.form1.txtSellAddr != null && document.form1.txtSellAddr.value != "")
						  document.form1.txtCustom5.value = document.form1.txtSellAddr.value; 
					
				    	if (propsell == 3699) //HDB
					{
							//if (document.form1.list_Sell_LocHDB != null && document.form1.list_Sell_LocHDB.value != "No")
							//			document.form1.txtCustom5.value = document.form1.list_Sell_LocHDB.value;																				
					}
					else
					{
							//if (document.form1.list_Sell_LocPrv != null && document.form1.list_Sell_LocPrv.value != "No")
							//			document.form1.txtCustom5.value = document.form1.list_Sell_LocPrv.value;		
					}
					//alert (" Selling location = "+document.form1.txtCustom5.value);
					var sellersInfo = "";
					
					if (document.form1.propAreaSell != null && document.form1.propAreaSell.value != null)
					{
						 sellersInfo += "Property Size: "+document.form1.propAreaSell.value+" sqft. ";
					}
					
					if (document.form1.chk_rm_sell != null)
					{
					   
						 var NoRms = "";
						 for (var w = 0; w < document.form1.chk_rm_sell.length; w++)
						 {
						 			if (document.form1.chk_rm_sell[w].checked)
									{
									    if (NoRms == "")
											NoRms += "No. of Rms: "+document.form1.chk_rm_sell[w].value;
										else
										    NoRms += ", "+document.form1.chk_rm_sell[w].value; 	
									}
									
						 		
						 }
						 if (NoRms != "")
								 sellersInfo += NoRms;
								 
						//alert("sell rm type: "+NoRms);		 
					}
					
					if (document.form1.txtCustom8.value == "")
						document.form1.txtCustom8.value = sellersInfo;
					else
					    document.form1.txtCustom8.value += ". "+sellersInfo;
					
			}
			//alert("isLandLord = "+isLandLord);
			if (isLandLord)
			{			     
				  var proprent = "";
			        // Property Type 										
					if (document.form1.chk_LLPropType != null )					
					{														
							for (var a = 0; a < document.form1.chk_LLPropType.length && proprent == ""; a++)
							{
									 if (document.form1.chk_LLPropType[a].checked)
									 {
											if (document.form1.chk_LLPropType[a].value == "hdb" )
												proprent = 3699;
											if (document.form1.chk_LLPropType[a].value == "condo" )	
												proprent = 3700;
											if (document.form1.chk_LLPropType[a].value == "landed" )	
												proprent = 3701;
											if (document.form1.chk_LLPropType[a].value == "commercial" )	
												proprent = 3702;	
											if (document.form1.chk_LLPropType[a].value == "overseas" )	
												proprent = 3703;													
									}
							}
							//alert("LL PropType: "+proprent);
							document.form1.txtClass6.value = proprent;
					}
					var noRms = "";
					//alert("Landlord addr = "+document.form1.txtLLAddr.value);
					if (document.form1.txtLLAddr != null && document.form1.txtLLAddr.value != "")
						  document.form1.txtCustom5.value = document.form1.txtLLAddr.value; 
					
				    	if (proprent == 3699)
					{
							//if (document.form1.list_Rent_locHDB1 != null && document.form1.list_Rent_locHDB1.value != "No")
							//		document.form1.txtCustom5.value = document.form1.list_Rent_locHDB1.value;							
																							
							if (document.form1.chk_rm_LLHDB != null)
							{
									for (var r = 0; r < document.form1.chk_rm_LLHDB.length; r++)
									{
											if (document.form1.chk_rm_LLHDB[r].checked)
											{
													if (noRms == "")
													{
														noRms = document.form1.chk_rm_LLHDB[r].value;
													}
													else
													{
														noRms += ", "+document.form1.chk_rm_LLHDB[r].value;
													}
											}
									}
							}
									
					}
					else
					{
							//if (document.form1.list_Rent_locPrv1 != null && document.form1.list_Rent_locPrv1.value != "No")
							//		document.form1.txtCustom5.value = document.form1.list_Rent_locPrv1.value;
									
							if (document.form1.bedRmPrvLL != null)
							{
									for (var r = 0; r < document.form1.chk_rm_LLPrv.length; r++)
									{
											if (document.form1.chk_rm_LLPrv[r].checked)
											{
													if (noRms == "")
													{
														noRms = document.form1.chk_rm_LLPrv[r].value;
													}
													else
													{
														noRms += ", "+document.form1.chk_rm_LLPrv[r].value;
													}
											}
									}
							}		
									
					}
					//alert (" Rm Type: "+noRms);
					document.form1.txtCustom2.value = noRms;
					
					//alert ("LL rent location: "+document.form1.txtCustom5.value);
						
					var LLInfo = "";
					
				    if (document.form1.rentExp != null && document.form1.rentExp.value != null)
					{
						 LLInfo += "Expected Rental: $"+document.form1.rentExp.value+". ";
					}
					
					if (document.form1.rentalDate!= null && document.form1.rentalDate.value != null)
					{
						 LLInfo += "Date Available for Rental: "+document.form1.rentalDate.value+". ";
					}
					// store under requirements
					document.form1.txtCustom4.value = LLInfo;
				 //alert ("Req: "+document.form1.txtCustom4.value);				   				    
				 
			}
			
			
			if (isTenant)
			{
					var proprent = "";					
					if (document.form1.chk_rentPropType != null )					
					{														
							for (var a = 0; a < document.form1.chk_rentPropType.length; a++)
							{
									 if (document.form1.chk_rentPropType[a].checked)
									 {
											if (document.form1.chk_rentPropType[a].value == "hdb" )
												proprent = 2451;
											if (document.form1.chk_rentPropType[a].value == "condo" )	
												proprent = 2452;
											if (document.form1.chk_rentPropType[a].value == "landed" )	
												proprent = 2453;
											if (document.form1.chk_rentPropType[a].value == "commercial" )	
												proprent = 2454;	
											if (document.form1.chk_rentPropType[a].value == "overseas" )	
												proprent = 2461;	
									}
							}
							//alert("Ten PropType: "+proprent);
							document.form1.txtClass7.value = proprent;
					}
					var rmType = "";
					
					
					if (proprent == 2451)
					{
							if (document.form1.chk_rm_rentHDB != null)
							{																		 
									for (var t = 0; t < document.form1.chk_rm_rentHDB.length; t++)
									{ 
											if (document.form1.chk_rm_rentHDB[t].checked)
											{					
												if (rmType == "")					
													rmType += document.form1.chk_rm_rentHDB[t].value;
												else
													rmType += ", "+document.form1.chk_rm_rentHDB[t].value;																						
											}
									}
							}					
							if (document.form1.list_Ten_locHDB1 != null && document.form1.list_Ten_locHDB1.value != "No")
									document.form1.txtCustom6.value = document.form1.list_Ten_locHDB1.value;		
					}
					else
					{
							if (document.form1.chk_rm_rentPrv != null)
							{																		 
									for (var t = 0; t < document.form1.chk_rm_rentPrv.length; t++)
									{ 
											if (document.form1.chk_rm_rentPrv[t].checked)
											{					
												if (rmType == "")					
													rmType += document.form1.chk_rm_rentPrv[t].value;
												else
													rmType += ", "+document.form1.chk_rm_rentPrv[t].value;																						
											}
									}
							}
							
							if (document.form1.list_Ten_locPrv1 != null && document.form1.list_Ten_locPrv1.value != "No")
									document.form1.txtCustom6.value = document.form1.list_Ten_locPrv1.value;					
					}
					
					//alert("Ten rm_type: "+rmType);
					document.form1.txtCustom2.value = rmType;
																		
					//alert ("Ten Rent Loc: "+document.form1.txtCustom6.value);										
															
					var TInfo = "";
					
				    	if (document.form1.rentBudget != null && document.form1.rentBudget.value != null && document.form1.rentBudget.value != "")
					{
						 TInfo += "Rental Budget: $"+document.form1.rentBudget.value+". ";
					}
					
					if (document.form1.tenantRentalDate!= null && document.form1.tenantRentalDate.value != null && document.form1.tenantRentalDate.value != "")
					{
						 TInfo += "I need to rent by: "+document.form1.tenantRentalDate.value+". ";
					}
					// store under requirements
					document.form1.txtCustom4.value = TInfo;
					//alert ("REQ: "+document.form1.txtCustom4.value);
					

			} // End isTenant 			
			
	  } // End rdoPurpose null

} // End Function
			
			


addLoadEvent(initialHiddenDivs);



</script>


<FORM style='WIDTH: 100%; HEIGHT: 100%' method='post' name='form1' action='http://post.clphome.com/wcmpost.aspx' onsubmit="return verifyMandatory()" > 
        <INPUT name='LinkCode' type='hidden' value="NC4VUE5/G3NGTGKCLOI2I5VZDBON"> 
        <INPUT type='hidden' name='RedirectURL'>
		<INPUT type='hidden' name='txtCustom1'>  <!-- Buying Size (SQFT)-->
		<INPUT type='hidden' name='txtCustom2'>  <!-- Rm Type -->
		<INPUT type='hidden' name='txtCustom3'>  <!-- Property Age -->
		<INPUT type='hidden' name='txtCustom4'>  <!-- Requirements -->
		<INPUT type='hidden' name='txtCustom5'>  <!-- Selling Location -->
		<INPUT type='hidden' name='txtCustom6'>  <!-- Buying Location -->
		<INPUT type='hidden' name='txtCustom7'>  <!-- My Strategy -->
		<INPUT type='hidden' name='txtCustom8'>  <!-- Comments about Clients -->
		<INPUT type='hidden' name='txtCustom9'>  <!-- Reason for Buying -->
		<INPUT type='hidden' name='txtCustom10'> <!-- Tenure -->
		<INPUT type='hidden' name='txtCustom11'> <!-- Date of 1st Contact -->
		<INPUT type='hidden' name='txtCustom12'> <!-- Buying Property Age -->
		<INPUT type='hidden' name='txtCustom13'> <!-- Top 3 Concerns (Buying) --> 
		<INPUT type='hidden' name='txtCustom14'> <!-- Top 3 Projects (Buying) -->
		<INPUT type='hidden' name='txtCustom15'> <!-- Time Line for Buying -->
		<INPUT type='hidden' name='txtClass1'> <!-- Client Type -->
		<INPUT type='hidden' name='txtClass2'> <!-- Referral source -->
		<INPUT type='hidden' name='txtClass3'> <!-- Current Status -->
		<INPUT type='hidden' name='txtClass4'> <!-- Budget -->
		<INPUT type='hidden' name='txtClass5'> <!-- Priority -->
		<INPUT type='hidden' name='txtClass6'> <!-- Selling Property Type -->
		<INPUT type='hidden' name='txtClass7'> <!-- Buying Property Type -->		
		
        <H2>Subscription Form</H2>
        <table width="80%"  border="0">
          <tr>
            <td colspan="18">Fill up all the information so that I can further assist you! The more information you give me, the better I can help you. Do not worry. All information will be kept private and confidential.</td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><SPAN class=ss-required-asterisk style1><strong>*</strong><em> Denotes Required Field </em></SPAN></td>
          </tr>
          <tr>
            <td colspan="8"><strong>First Name</strong><span class="style6">*</span></td>
            <td colspan="10"><strong> Last Name <span class="style6">*</span></strong></td>
          </tr>
          <tr>
            <td colspan="8"><input name="txtFirstName" type="text" id="txtFirstName"></td>
            <td colspan="10"><input name="txtLastName" type="text" id="txtLastName"></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><strong>Email Address</strong><span class="style6">*</span></td>
          </tr>
          <tr>
            <td colspan="18"><input name="txtEmail" type="text" id="txtEmail"></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><strong>Mobile(so that you will not miss the best deals!)</strong><span class="style6">*</span></td>
          </tr>
          <tr>
            <td colspan="18"><input name="txtMobile" type="text" id="txtMobile"></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><strong>Preferred Information</strong></td>
          </tr>
          <tr>
            <td colspan="18"><span class="style3">You can click more than 1</span></td>
          </tr>
          <tr>
            <td width="3%"><input name="chk_info1" type="checkbox" id="chk_info1" value="true" checked>
            <LABEL for=group_5_1></LABEL></td>
            <td colspan="17">Yes! I'm want to receive General Information About Investing In Real Estate in Singapore (sent monthly) ABSOLUTELY FREE!</td>
          </tr>
          <tr>
            <td><input name="chk_info2" type="checkbox" id="chk_info2" value="true" checked>
            <LABEL for=group_5_2></LABEL></td>
            <td colspan="17">Yes! I want to receive bi-weekly news about your Recommended Properties Worth Looking Into ABSOLUTELY FREE!</td>
          </tr>
          <tr>
            <td><input name="chk_info3" type="checkbox" id="chk_info3" value="true">
            <LABEL for=group_5_3></LABEL></td>
            <td colspan="17">No Thxs! I just want you to help me just this one time, thereby missing out on other possible opportunities!</td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><strong>Type of transaction</strong><SPAN class=style2 ss-required-asterisk><strong>*</strong></SPAN></td>
          </tr>
          <tr>
            <td colspan="18"><span class="style3">Help me understand your Real Estate needs </span></td>
          </tr>
          <tr>
            <td colspan="18">You are interested in:</td>
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="1" onClick='switchProspectType(this);'></td>
            <td colspan="17"><LABEL class=ss-choice-label for=group_13_1>buying for your own stay </LABEL></td>
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="2" onClick='switchProspectType(this);'></td>
            <td colspan="17">buying for investment </td>
          </tr>
          <tr>
            <td><input name="rdo_purpose" type="radio" value="3" onClick='switchProspectType(this);'></td>
            <td colspan="17">selling to cash out </td>
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="4" onClick='switchProspectType(this);'></td>
            <td colspan="17">upgrading, but you want to buy before selling </td> 
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="5" onClick='switchProspectType(this);'></td>
            <td colspan="17">upgrading, but you want to sell before buying </td>
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="6" onClick='switchProspectType(this);'></td>
            <td colspan="17">renting out your property</td>
          </tr>
          <tr>
            <td><input id="rdo_purpose" name="rdo_purpose" type="radio" value="7" onClick='switchProspectType(this);'></td>
            <td colspan="17"><LABEL class=ss-choice-label for=group_13_2>renting a property for yourself </LABEL></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18">
			<div id='buyerOptions'>
			<strong>Help me understand your buying needs </strong><br>
			<strong>A. Type of Property You Are Interested in <span class="style2">*</span></strong><br>
			<input name="chkPropType" type="radio" id="chkPropType" value="hdb" onClick='switchPropType();'>HDB<br>
			<input name="chkPropType" type="radio" id="chkPropType" value="condo" onClick='switchPropType();'><LABEL for=group_7_1>Condominium</LABEL><br>
			<input name="chkPropType" type="radio" id="chkPropType" value="landed" onClick='switchPropType();'><LABEL for=group_7_2>Landed Properties</LABEL><br>
			<input name="chkPropType" type="radio" id="chkPropType" value="commercial" onClick="switchPropType();"><LABEL for=group_7_3>Commercial Properties</LABEL><br>
			<input name="chkPropType" type="radio" id="chkPropType" value="overseas"  onClick="switchPropType();"><LABEL for=other_option:7>Overseas Properties</LABEL><br>			
			
			<p><strong>B. Tenure <span class="style2">*</span></strong><br>
			<span class="style3">Which type of tenure you are keen on?</span><br>
			<div id="tenurePrv">
			<input name="rdo_tenure" type="radio" value="99"><LABEL class=ss-choice-label for=group_18_1>99 years</LABEL><br>
			<input name="rdo_tenure" type="radio" value="999"><LABEL class=ss-choice-label for=group_18_2>999 years</LABEL><br>
			<input name="rdo_tenure" type="radio" value="freehold"><LABEL class=ss-choice-label for=group_18_3>Freehold</LABEL><br>			
			</div>
			<div id="tenureHDB"> N.A </div>
			</p>
			<p>
			<strong>C. Investment Budget <span class="style2">*</span></strong><br>
			<span class="style3">Select your budget for your property</span><br>
			<select name="list_budget" id="list_budget">
              <option value="0" selected>Select One...</option>
              <option value="200k">Less than $200K</option>
              <option value="250K">$200K - $250K</option>
              <option value="300K">$250k - $300K</option>
              <option value="350K">$300K - $350K</option>
              <option value="400K">$350K - $400K</option>
              <option value="450K">$400K - $450K</option>
              <option value="700K">$450K - $700K</option>
              <option value="800k">$700K - $800K</option>
              <option value="1M">$800K - $1M</option>
              <option value="1.5M">$1M - $1.5M</option>
              <option value="2M">$1.5M - $2M</option>
              <option value="2.5M">$2M - $2.5M</option>
              <option value="3M">$2.5M - $3M</option>
              <option value="3.5M">$3M - $3.5M</option>
              <option value="5M">$4M - $5M </option>
              <option value="5MM">Above $5M</option>
            </select><br>			
			</p>
			<p><strong>D. Property Age <span class="style2">*</span></strong><br>
			<span class="style3">Let me know if you are including the property age as part of your considerations</span><br>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="Any"> <LABEL for=group_24_1>It doesn't matter</LABEL><br>
			<div id='propAgePrv'>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="Under Construction"> <LABEL for=group_24_2>Under Construction</LABEL><br>
		    <input name="chk_propAge" type="checkbox" id="chk_propAge" value="Just TOP"> <LABEL for=group_24_3>Just TOP</LABEL><br> 
		    <input name="chk_propAge" type="checkbox" id="chk_propAge" value="1 - 3yrs"> <LABEL for=group_24_4>1 - 3 years</LABEL><br>			
		    <input name="chk_propAge" type="checkbox" id="chk_propAge" value="3 - 5yrs"> <LABEL for=group_24_5>3 - 5 years</LABEL><br>
			</div>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="5 - 10yrs"> <LABEL for=group_24_6>5 - 10 years</LABEL><br>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="10 - 15yrs"> <LABEL for=group_24_7>10 - 15 years</LABEL><br>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="15 - 20yrs"> <LABEL for=group_24_8>15 - 20 years</LABEL><br>
			<input name="chk_propAge" type="checkbox" id="chk_propAge" value="More than 20yrs"> <LABEL for=group_24_9>More than 20 years</LABEL><br>
			</p>
			
			<p>
			<strong><div id='locTitlePrv'>E. Top 3 Locations You Are Focusing On <span class="style2">*</span></div> <div id='locTitleHDB'>E. Locations You Are Focusing On <span class="style2">*</span></div></strong><br>
			<span class="style3">Select a district that you are most interested in</span>
			<div id='locListPrv'>
				<select name="list_loc1" id="list_loc1">
				<option value="No" selected> Select One...</option>
				<option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option> 
				<option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option> 
				<option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option> 
				<option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option> 
				<option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option> 
				<option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option> 
				<option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option> 
				<option value="District 8 (Little India)">District 8 (Little India)</option> 
				<option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option> 					
				<option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option> 
				<option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
				<option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option> 
				<option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option> 
				<option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option> 
				<option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option> 
				<option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option> 
				<option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option> 
				<option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option> 
				<option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option> 
				<option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option> 
				<option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option> 
				<option value="District 22 (Jurong)">District 22 (Jurong)</option> 
				<option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option> 
				<option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option> 
				<option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option> 
				<option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option> 
				<option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option> 
				<option value="District 28 (Seletar)">District 28 (Seletar)</option>
				</select><br>
				
				<select name="list_loc2" id="list_loc2">
				  <option value="No" selected>No thanks, I'm only interested in my top location</option>
				  <option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option>
				  <option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option>
				  <option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option>
				  <option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option>
				  <option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option>
				  <option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option>
				  <option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option>
				  <option value="District 8 (Little India)">District 8 (Little India)</option>
				  <option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option>
				  <option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option>
				  <option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
				  <option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option>
				  <option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option>
				  <option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option>
				  <option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option>
				  <option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option>
				  <option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option>
				  <option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option>
				  <option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option>
				  <option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option>
				  <option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option>
				  <option value="District 22 (Jurong)">District 22 (Jurong)</option>
				  <option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option>
				  <option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option>
				  <option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option>
				  <option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option>
				  <option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option>
				  <option value="District 28 (Seletar)">District 28 (Seletar)</option>
			   </select><br>
			  
			   <select name="list_loc3" id="list_loc3">
				  <option value="No" selected>No thanks, I'm only interested in my top 2 locations</option>
				  <option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option>
				  <option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option>
				  <option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option>
				  <option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option>
				  <option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option>
				  <option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option>
				  <option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option>
				  <option value="District 8 (Little India)">District 8 (Little India)</option>
				  <option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option>
				  <option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option>
				  <option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
				  <option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option>
				  <option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option>
				  <option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option>
				  <option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option>
				  <option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option>
				  <option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option>
				  <option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option>
				  <option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option>
				  <option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option>
				  <option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option>
				  <option value="District 22 (Jurong)">District 22 (Jurong)</option>
				  <option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option>
				  <option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option>
				  <option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option>
				  <option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option>
				  <option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option>
				  <option value="District 28 (Seletar)">District 28 (Seletar)</option>
			  </select><br>
			  </div>
				 <div id='locListHDB'>
				      <select id="list_locHDB1" name="list_locHDB1" >
							<option value="No"> Select One...</option>											
							<option value="Ang Mo Kio" >Ang Mo Kio</option>
							<option value="Bedok" >Bedok</option>
							<option value="Bishan" >Bishan</option>
							<option value="Bukit Batok" >Bukit Batok</option>
							<option value="Bukit Merah" >Bukit Merah</option>
                            <option value="Bukit Panjang" >Bukit Panjang</option>
							<option value="Bukit Timah" >Bukit Timah</option>
							<option value="Central Area" >Central Area</option>
							<option value="Choa Chu Kang" >Choa Chu Kang</option>
							<option value="Clementi" >Clementi</option>
							<option value="Geylang" >Geylang</option>
							<option value="Hougang" >Hougang</option>
							<option value="Jurong East" >Jurong East</option>
							<option value="Jurong West" >Jurong West</option>
							<option value="Kallang/Whampoa" >Kallang/Whampoa</option>							
						    <option value="Marine Parade" >Marine Parade</option>
                            <option value="Pasir Ris" >Pasir Ris</option>
							<option value="Potong Pasir" >Potong Pasir</option>							
							<option value="Punggol" >Punggol</option>
							<option value="Queenstown" >Queenstown</option>
							<option value="Sembawang" >Sembawang</option>
							<option value="Sengkang" >Sengkang</option>
							<option value="Serangoon" >Serangoon</option>
							<option value="Tampines" >Tampines</option>
							<option value="Toa Payoh" >Toa Payoh</option>
							<option value="Woodlands" >Woodlands</option>
							<option value="Yishun" >Yishun</option>
					</select><br>
				 </div>
			</p>

			<p>
			<strong>F. Your 3 Topmost Concerns </strong><strong><span class="style2">*</span></strong><br>
			<span class="style3">Select your 3 topmost concerns in choosing a property</span><br>
			<select name="list_con1" id="list_con1">
			<option value="Budget" selected>Budget</option> 
			<option value="Location">Location</option> 
			<option value="Layout">Layout</option> 
			<option value="Level">Level</option> 
			<option value="Unblock View">Unblock View</option> 
			<option value="No. of units in development">No. of units in development</option> 
			<option value="Tenure">Tenure</option> 
			<option value="Facilities">Facilities</option> 
			<option value="Size">Size</option> 
			<option value="Property Age">Property Age</option>
            </select><br>
			<select name="list_con2" id="list_con2">
              <option value="Budget">Budget</option>
              <option value="Location" selected>Location</option>
              <option value="Layout">Layout</option>
              <option value="Level">Level</option>
              <option value="Unblock View">Unblock View</option>
              <option value="No. of units in development">No. of units in development</option>
              <option value="Tenure">Tenure</option>
              <option value="Facilities">Facilities</option>
              <option value="Size">Size</option>
              <option value="Property Age">Property Age</option>                        
			 </select><br>
			 <select name="list_con3" id="list_con3">
              <option value="Budget">Budget</option>
              <option value="Location">Location</option>
              <option value="Layout" selected>Layout</option>
              <option value="Level">Level</option>
              <option value="Unblock View">Unblock View</option>
              <option value="No. of units in development">No. of units in development</option>
              <option value="Tenure">Tenure</option>
              <option value="Facilities">Facilities</option>
              <option value="Size">Size</option>
              <option value="Property Age">Property Age</option>
             </select><br>			
			</p>
			<p>
			<strong>G. Time Line<span class="style2"> *</span></strong><br>
			<span class="style3">Do you have a specific time line that you are looking at to buy a property?</span><br>
			<input name="rdo_timeline" type="radio" value="0 - 3mths">
            <LABEL class=ss-choice-label for=group_22_1>0 - 3 months</LABEL><br>                   
            <input name="rdo_timeline" type="radio" value="3 - 6mths">
            <LABEL class=ss-choice-label for=group_22_2> 3 - 6 months </LABEL><br>
            <input name="rdo_timeline" type="radio" value="6 - 9mths">
            <LABEL class=ss-choice-label for=group_22_3>6 - 9 months </LABEL><br>                    
            <input name="rdo_timeline" type="radio" value="9 - 12mths">
            <LABEL class=ss-choice-label for=group_22_4>9 - 12 months </LABEL><br>                    
            <input name="rdo_timeline" type="radio" value="longer than 12mths">
            <LABEL class=ss-choice-label for=group_22_5>&gt; 12 months </LABEL><br>
			</p>
			<p>
			<div id='prvPropArea'>
				<strong> H. Property size <span class="style2">*</span></strong><br>
				<span class="style3">The desired size of the property in square feet</span><br> 
				<input type="text" name="propArea">	
			</div>
			</p> 					
			<p>
			<div id='bedRmPrv'>
			<strong> I. No. of Bedrooms <span class="style2">* </span></strong> <br>         
				<span class="style3">Number of bedrms you are keen on</span><br>			  			  
				<input name="chk_rm" type="checkbox" id="chk_rm" value="1"> 1 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="2"> 2 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="2+1"> 2+1 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="3"> 3 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="3+1"> 3+1 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="4"> 4 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="4+1"> 4+1 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="5"> 5 &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="5up"> 5 up &nbsp; &nbsp;							
			</div>
			<div id='bedRmHDBBuyer'>
				<strong> Type of HDB flat <span class="style2">* </span></strong>  <br>        
				<span class="style3">Type of the flat that you are keen on</span> <br>		  			  
				<input name="chk_rm" type="checkbox" id="chk_rm" value="3RM"> 3RM &nbsp; &nbsp;
				<input name="chk_rm" type="checkbox" id="chk_rm" value="4RM"> 
				4RM &nbsp; &nbsp;
				 <input name="chk_rm" type="checkbox" id="chk_rm" value="5RM"> 
				5RM &nbsp; &nbsp;
				 <input name="chk_rm" type="checkbox" id="chk_rm" value="EA"> 
				Executive Apartment &nbsp; &nbsp;
				 <input name="chk_rm" type="checkbox" id="chk_rm" value="EM"> Executive Mansionette &nbsp; &nbsp;				
				 <input name="chk_rm" type="checkbox" id="chk_rm" value="JU"> Jumbo &nbsp; &nbsp;				
			</div>
			</p>			
			<p>			
				<strong>Name 3 Projects You Are Particularly interested in</strong>
  		        <span class="style3">If you are particularly keen on certain projects, let me know!</span>
  		        <textarea name="txt_proj" cols="100" rows="5" id="txt_proj"></textarea>
</p>
			
			</div> <!-- End buyer options> -->
			
			<div id='tenantOptions'>
			
			  <p><strong>Please state your rental budget <span class="style2">*</span></strong>
			  	<input type="text" name="rentBudget">		      
			  </p>
			  <p><strong>Type of Property You are interested in <span class="style2">*</span></strong><br>
                <input name="chk_rentPropType" type="radio" id="chk_rentPropType" value="hdb" onClick='switchRentPropType(document.form1.chk_rentPropType)'>
                HDB<br>
                <input name="chk_rentPropType" type="radio" id="chk_rentPropType" value="condo" onClick='switchRentPropType(document.form1.chk_rentPropType)'>
                <LABEL for=group_7_1>Condominium</LABEL>
			  </p>
			  <p><strong>Please select the location that you are interested in <span class="style2">*</span></strong></p>
			  <p>
			  <div id='rentLocPrv'>
			    <select name="list_Ten_locPrv1" id="list_Ten_locPrv1">
                  <option value="No" selected> Select One...</option>
                  <option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option>
                  <option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option>
                  <option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option>
                  <option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option>
                  <option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option>
                  <option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option>
                  <option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option>
                  <option value="District 8 (Little India)">District 8 (Little India)</option>
                  <option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option>
                  <option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option>
                  <option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
                  <option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option>
                  <option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option>
                  <option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option>
                  <option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option>
                  <option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option>
                  <option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option>
                  <option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option>
                  <option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option>
                  <option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option>
                  <option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option>
                  <option value="District 22 (Jurong)">District 22 (Jurong)</option>
                  <option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option>
                  <option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option>
                  <option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option>
                  <option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option>
                  <option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option>
                  <option value="District 28 (Seletar)">District 28 (Seletar)</option>
                </select>
			  </div>                
		        <div id='rentLocHDB'> 
			    <select id="list_Ten_locHDB1" name="list_Ten_locHDB1" >
                  <option value="No"> Select One...</option>
                  <option value="Ang Mo Kio" >Ang Mo Kio</option>
                  <option value="Bedok" >Bedok</option>
                  <option value="Bishan" >Bishan</option>
                  <option value="Bukit Batok" >Bukit Batok</option>
                  <option value="Bukit Merah" >Bukit Merah</option>
                  <option value="Bukit Panjang" >Bukit Panjang</option>
                  <option value="Bukit Timah" >Bukit Timah</option>
                  <option value="Central Area" >Central Area</option>
                  <option value="Choa Chu Kang" >Choa Chu Kang</option>
                  <option value="Clementi" >Clementi</option>
                  <option value="Geylang" >Geylang</option>
                  <option value="Hougang" >Hougang</option>
                  <option value="Jurong East" >Jurong East</option>
                  <option value="Jurong West" >Jurong West</option>
                  <option value="Kallang/Whampoa" >Kallang/Whampoa</option>
                  <option value="Marine Parade" >Marine Parade</option>
                  <option value="Pasir Ris" >Pasir Ris</option>
                  <option value="Potong Pasir" >Potong Pasir</option>
                  <option value="Punggol" >Punggol</option>
                  <option value="Queenstown" >Queenstown</option>
                  <option value="Sembawang" >Sembawang</option>
                  <option value="Sengkang" >Sengkang</option>
                  <option value="Serangoon" >Serangoon</option>
                  <option value="Tampines" >Tampines</option>
                  <option value="Toa Payoh" >Toa Payoh</option>
                  <option value="Woodlands" >Woodlands</option>
                  <option value="Yishun" >Yishun</option>
                </select>
		      </p>			  
			</div>
			<p><strong>By when do you need to rent? (DD/MM/YYYY) <span class="style2">*</span></strong>
			     <input name="tenantRentalDate" type="text" size="12" maxlength="10" onBlur="isDate(document.form1.tenantRentalDate.value);">			    
            </p>
		</div> <!-- End tenant options> -->
		
		<div id='landLordOptions'>						 
			  <p><strong>Type of Property you are renting out<span class="style2">*</span></strong><br>
                <input name="chk_LLPropType" type="radio" id="chk_LLPropType" value="hdb" onClick='switchLLPropType(document.form1.chk_LLPropType)'> HDB<br>
                <input name="chk_LLPropType" type="radio" id="chk_LLPropType" value="condo" onClick='switchLLPropType(document.form1.chk_LLPropType)'> <LABEL for=group_7_1>Condominium</LABEL>
			  </p>
			  <!-- 
			  <p><strong>Please select the location of the property that you are renting out<span class="style2">*</span> </strong></p>			  
			  <p>
			  <div id='LL_LocPrv'>
			    <select name="list_Rent_locPrv1" id="list_Rent_locPrv1">
                  <option value="" selected> Select One...</option>
                  <option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option>
                  <option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option>
                  <option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option>
                  <option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option>
                  <option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option>
                  <option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option>
                  <option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option>
                  <option value="District 8 (Little India)">District 8 (Little India)</option>
                  <option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option>
                  <option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option>
                  <option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
                  <option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option>
                  <option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option>
                  <option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option>
                  <option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option>
                  <option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option>
                  <option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option>
                  <option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option>
                  <option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option>
                  <option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option>
                  <option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option>
                  <option value="District 22 (Jurong)">District 22 (Jurong)</option>
                  <option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option>
                  <option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option>
                  <option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option>
                  <option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option>
                  <option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option>
                  <option value="District 28 (Seletar)">District 28 (Seletar)</option>
                </select>
		  </div>                
		        <div id='LL_LocHDB'> 
			    <select id="list_Rent_locHDB1" name="list_Rent_locHDB1" >
                  <option value="No"> Select One...</option>
                  <option value="Ang Mo Kio" >Ang Mo Kio</option>
                  <option value="Bedok" >Bedok</option>
                  <option value="Bishan" >Bishan</option>
                  <option value="Bukit Batok" >Bukit Batok</option>
                  <option value="Bukit Merah" >Bukit Merah</option>
                  <option value="Bukit Panjang" >Bukit Panjang</option>
                  <option value="Bukit Timah" >Bukit Timah</option>
                  <option value="Central Area" >Central Area</option>
                  <option value="Choa Chu Kang" >Choa Chu Kang</option>
                  <option value="Clementi" >Clementi</option>
                  <option value="Geylang" >Geylang</option>
                  <option value="Hougang" >Hougang</option>
                  <option value="Jurong East" >Jurong East</option>
                  <option value="Jurong West" >Jurong West</option>
                  <option value="Kallang/Whampoa" >Kallang/Whampoa</option>
                  <option value="Marine Parade" >Marine Parade</option>
                  <option value="Pasir Ris" >Pasir Ris</option>
                  <option value="Potong Pasir" >Potong Pasir</option>
                  <option value="Punggol" >Punggol</option>
                  <option value="Queenstown" >Queenstown</option>
                  <option value="Sembawang" >Sembawang</option>
                  <option value="Sengkang" >Sengkang</option>
                  <option value="Serangoon" >Serangoon</option>
                  <option value="Tampines" >Tampines</option>
                  <option value="Toa Payoh" >Toa Payoh</option>
                  <option value="Woodlands" >Woodlands</option>
                  <option value="Yishun" >Yishun</option>
                </select>
				</div>
		      </p>			  
			   -->
			  <p><strong>Please enter your property Address<span class="style2">*</span></strong><br>			  
			    <textarea name="txtLLAddr" cols="60" rows="5" id="txtLLAddr"></textarea> 
		      </p>
			  <p><strong>Please your expected rental<span class="style2">* </span></strong> 
			  	<input type="text" name="rentExp">		      
		  </p>
			<p><strong>When is your unit available for rent? (DD/MM/YYYY)<span class="style2">* </span></strong>
			     <input name="rentalDate" type="text" size="12" maxlength="10" onBlur="isDate(document.form1.rentalDate.value);">			    
            </p>
			<p>
		  <div id='bedRmPrvLL'> 
			    <strong> No. of Bedrooms <span class="style2">* </span></strong> <br>         
				<span class="style3">Number of bedrms of your property</span><br>			  			  
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="1"> 1 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="2"> 2 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="2+1"> 2+1 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="3"> 3 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="3+1"> 3+1 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="4"> 4 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="4+1"> 4+1 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="5"> 5 &nbsp; &nbsp;
				<input name="chk_rm_LLPrv" type="checkbox" id="chk_rm_LLPrv" value="5up"> 5 up &nbsp; &nbsp;
		  </div>
			<div id='bedRmHDBLL'>
				<strong> Type of HDB flat <span class="style2">* </span></strong>  <br>        
				<span class="style3">Type of the flat </span> <br>		  			  
				<input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="3RM"> 3RM &nbsp; &nbsp;
				<input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="4RM"> 
				4RM &nbsp; &nbsp;
				 <input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="5RM"> 
				5RM &nbsp; &nbsp;
				 <input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="EA"> 
				Executive Apartment &nbsp; &nbsp;
				 <input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="EM"> Executive Mansionette &nbsp; &nbsp;				
				 <input name="chk_rm_LLHDB" type="checkbox" id="chk_rm_LLHDB" value="JU"> Jumbo &nbsp; &nbsp;				
			</div>					
			</p>
		 </div> <!-- End landlord options> -->
		 
		 <div id='sellerOptions'>
		 	  <p><strong><u>Details on property to be sold</u></strong></p>					 
			  <p><strong>Please select your property type<span class="style2">*</span></strong><br>
                <input name="chk_SellPropType" type="radio" id="chk_SellPropType" value="hdb" onClick='switchSellerPropType(document.form1.chk_SellPropType)'>HDB<br>
			    <input name="chk_SellPropType" type="radio" id="chk_SellPropType" value="condo" onClick='switchSellerPropType(document.form1.chk_SellPropType)'><LABEL for=group_7_1>Condominium</LABEL><br>
			    <input name="chk_SellPropType" type="radio" id="chk_SellPropType" value="landed" onClick='switchSellerPropType(document.form1.chk_SellPropType)'><LABEL for=group_7_2>Landed Properties</LABEL><br>
			    <input name="chk_SellPropType" type="radio" id="chk_SellPropType" value="commercial" onClick='switchSellerPropType(document.form1.chk_SellPropType)'><LABEL for=group_7_3>Commercial Properties</LABEL><br>				
			  </p>
			  <!--
			  <p><strong>Please select the location of the property that you are selling <span class="style2">*</span></strong></p>
			  <div id='seller_LocPrv'>
			    <select name="list_Sell_LocPrv" id="list_Sell_LocPrv">
                  <option value="No" selected> Select One...</option>
                  <option value="District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)">District 1 (Raffles Place, Cecil, Marina, People&#39;s Park)</option>
                  <option value="District 2 (Anson, Tanjong Pagar)">District 2 (Anson, Tanjong Pagar)</option>
                  <option value="District 3 (Queenstown, Tiong Bahru)">District 3 (Queenstown, Tiong Bahru)</option>
                  <option value="District 4 (Telok Blangah, Harbourfront)">District 4 (Telok Blangah, Harbourfront)</option>
                  <option value="District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)">District 5 (Pasir Panjang, Hong Leong Garden, Clementi New Town)</option>
                  <option value="District 6 (High Street, Part of Beach Road)">District 6 (High Street, Part of Beach Road)</option>
                  <option value="District 7 (Middle Road, Golden Mile)">District 7 (Middle Road, Golden Mile)</option>
                  <option value="District 8 (Little India)">District 8 (Little India)</option>
                  <option value="District 9 (Orchard, Cairnhill, River Valley)">District 9 (Orchard, Cairnhill, River Valley)</option>
                  <option value="District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)">District 10 (Ardmore, Bukit Timah, Holland Road, Tanglin)</option>
                  <option value="District 11 (Watten Estate, Novena, Thomson)">District 11 (Watten Estate, Novena, Thomson)</option>
                  <option value="District 12 (Balestier, Toa Payoh, Serangoon)">District 12 (Balestier, Toa Payoh, Serangoon)</option>
                  <option value="District 13 (Macpherson, Braddell)">District 13 (Macpherson, Braddell)</option>
                  <option value="District 14 (Geylang, Eunos)">District 14 (Geylang, Eunos)</option>
                  <option value="District 15 (Katong, Joo Chiat, Amber Road)">District 15 (Katong, Joo Chiat, Amber Road)</option>
                  <option value="District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)">District 16 (Bedok, Upper East Coast, Eastwood, Kew Drive)</option>
                  <option value="District 17 (Loyang, Changi)">District 17 (Loyang, Changi)</option>
                  <option value="District 18 (Tampines, Pasir Ris)">District 18 (Tampines, Pasir Ris)</option>
                  <option value="District 19 (Serangoon Garden, Hougang, Ponggol)">District 19 (Serangoon Garden, Hougang, Ponggol)</option>
                  <option value="District 20 (Bishan, Ang Mo Kio)">District 20 (Bishan, Ang Mo Kio)</option>
                  <option value="District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)">District 21 (Upper Bukit Timah, Clementi Park, Ulu Pandan)</option>
                  <option value="District 22 (Jurong)">District 22 (Jurong)</option>
                  <option value="District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)">District 23 (Hillview, Dairy Farm, Bukit Panjang, Choa Chu Kang)</option>
                  <option value="District 24 (Lim Chu Kang, Tengah)">District 24 (Lim Chu Kang, Tengah)</option>
                  <option value="District 25 (Kranji, Woodgrove)">District 25 (Kranji, Woodgrove)</option>
                  <option value="District 26 (Upper Thomson, Springleaf)">District 26 (Upper Thomson, Springleaf)</option>
                  <option value="District 27 (Yishun, Sembawang)">District 27 (Yishun, Sembawang)</option>
                  <option value="District 28 (Seletar)">District 28 (Seletar)</option>
                </select>
		   </div>                
		         
				<div id='seller_LocHDB'> 
			    <select id="list_Sell_LocHDB" name="list_Sell_LocHDB" >
                  <option value="No"> Select One...</option>
                  <option value="Ang Mo Kio" >Ang Mo Kio</option>
                  <option value="Bedok" >Bedok</option>
                  <option value="Bishan" >Bishan</option>
                  <option value="Bukit Batok" >Bukit Batok</option>
                  <option value="Bukit Merah" >Bukit Merah</option>
                  <option value="Bukit Panjang" >Bukit Panjang</option>
                  <option value="Bukit Timah" >Bukit Timah</option>
                  <option value="Central Area" >Central Area</option>
                  <option value="Choa Chu Kang" >Choa Chu Kang</option>
                  <option value="Clementi" >Clementi</option>
                  <option value="Geylang" >Geylang</option>
                  <option value="Hougang" >Hougang</option>
                  <option value="Jurong East" >Jurong East</option>
                  <option value="Jurong West" >Jurong West</option>
                  <option value="Kallang/Whampoa" >Kallang/Whampoa</option>
                  <option value="Marine Parade" >Marine Parade</option>
                  <option value="Pasir Ris" >Pasir Ris</option>
                  <option value="Potong Pasir" >Potong Pasir</option>
                  <option value="Punggol" >Punggol</option>
                  <option value="Queenstown" >Queenstown</option>
                  <option value="Sembawang" >Sembawang</option>
                  <option value="Sengkang" >Sengkang</option>
                  <option value="Serangoon" >Serangoon</option>
                  <option value="Tampines" >Tampines</option>
                  <option value="Toa Payoh" >Toa Payoh</option>
                  <option value="Woodlands" >Woodlands</option>
                  <option value="Yishun" >Yishun</option>
                </select>
				</div>
				
		      </p>-->			  
			  <p><strong>Please enter your property Address<span class="style2">*</span></strong><br>
			  
                <textarea name="txtSellAddr" cols="60" rows="5" id="txtSellAddr"></textarea>
              </p>
			  <p>
	  	   <div id='prvPropAreaSeller'>
					<strong>What is the built-In area (sq ft) of your property?<span class="style2">*</span></strong>
					<input type="text" name="propAreaSell">	
		   </div>
			  </p>
			  <p>
			  <div id='bedRmPrvSell'> 
			    <strong> No. of Bedrooms <span class="style2">* </span></strong> <br>         
				<span class="style3">Number of bedrms of your property</span><br>			  			  
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="1"> 1 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="2"> 2 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="2+1"> 2+1 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="3"> 3 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="3+1"> 3+1 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="4"> 4 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="4+1"> 4+1 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="5"> 5 &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="5up"> 5 up &nbsp; &nbsp;
			</div>
			<div id='bedRmHDBSell'>
				<strong> Type of HDB flat <span class="style2">* </span></strong>  <br>        
				<span class="style3">Type of the flat </span> <br>		  			  
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="3RM"> 3RM &nbsp; &nbsp;
				<input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="4RM"> 
				4RM &nbsp; &nbsp;
				 <input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="5RM"> 
				5RM &nbsp; &nbsp;
				 <input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="EA"> 
				Executive Apartment &nbsp; &nbsp;
				 <input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="EM"> Executive Mansionette &nbsp; &nbsp;				
				 <input name="chk_rm_sell" type="checkbox" id="chk_rm_sell" value="JU"> Jumbo &nbsp; &nbsp;				
			</div>					
			</p>
		 </div> <!-- End Seller options> -->
			</td>
          </tr>                                                                                	                                    		  		  		 
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>                    
		<tr>
            <td colspan="18">			
			<div id='bedRmPrvRent'> 
			    <strong> No. of Bedrooms <span class="style2">* </span></strong> <br>         
				<span class="style3">Number of bedrms you are keen on </span><br>			  			  
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="1"> 1 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="2"> 2 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="2+1"> 2+1 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="3"> 3 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="3+1"> 3+1 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="4"> 4 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="4+1"> 4+1 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="5"> 5 &nbsp; &nbsp;
				<input name="chk_rm_rentPrv" type="checkbox" id="chk_rm_rentPrv" value="5up"> 5 up &nbsp; &nbsp;
			</div>
			<div id='bedRmHDBRent'>
				<strong> Type of HDB flat <span class="style2">* </span></strong>  <br>        
				<span class="style3">Type of the flat that you are keen on</span> <br>		  			  
				<input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="3RM"> 3RM &nbsp; &nbsp;
				<input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="4RM"> 
				4RM &nbsp; &nbsp;
				 <input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="5RM"> 
				5RM &nbsp; &nbsp;
				 <input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="EA"> 
				Executive Apartment &nbsp; &nbsp;
				 <input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="EM"> Executive Mansionette &nbsp; &nbsp;				
				 <input name="chk_rm_rentHDB" type="checkbox" id="chk_rm_rentHDB" value="JU"> Jumbo &nbsp; &nbsp;				
			</div>								
			</td>
          </tr>                                                                                	                                    		  		  
		                              		       
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>		  		    
          <tr>
            <td colspan="18"><strong>Remarks</strong></td>
          </tr>
          <tr>
            <td colspan="18" class="style3">Any other information you feel that you should let me know!</td>
          </tr>
          <tr>
            <td colspan="18"><textarea name="txtComments" cols="100" rows="5" id="txtComments"></textarea></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
          <tr>
            <td colspan="18"><input type="submit" name="Submit" value="Submit">
            <input type="reset" name="Reset" value="Reset"></td>
          </tr>
          <tr>
            <td colspan="18">&nbsp;</td>
          </tr>
        </table>
</FORM>

</body>
</html>


