// orchid hospitality Club Timeshare Holidays
function orprice(orcntPr, orintPr,orcntPr2, orintPr2)
{ 
	var orhitetrue=false;
	var orswhitetrue= false;
	for (var i=0; i<3; i++)
	{
		if(document.orchid.orhite[i].checked)
			orhitetrue=true;
		if(i<2)
		{
			if(document.orchid.orswhite[i].checked)
			orswhitetrue=true;
		}
		
	}
	var Errmsg=""
		
		if(! orhitetrue)
			Errmsg+="Please Select a Season \n"
		if(! orswhitetrue)
			Errmsg+="Please Select a Unit Type "
		if (Errmsg !="")
		{
			alert (Errmsg)
			return;
		}
		//The price of this membership is: 
		//The downpayment price of this membership is:
		var orcontact_price = new Array(6);
		var oronline_ref = new Array(6);
		orcontact_price[0]=219500;
		oronline_ref[0]= 194500;
		orcontact_price[1]=255900;
		oronline_ref[1]= 230900;
		orcontact_price[2]=293000;
		oronline_ref[2]= 268000;
		orcontact_price[3]=195000;
		oronline_ref[3]=170000;
		orcontact_price[4]=212500;
		oronline_ref[4]=187500;
		orcontact_price[5]=247500;
		oronline_ref[5]=222500;
		var orefftvPr;
		if((document.orchid.orhite[0].checked)&&(document.orchid.orswhite[1].checked))
		{
			alert ('Price of membership is : Rs 207,000'+'\n'+' Downpayment Price is :  Rs 182,000 '+'\n'+'Administrative Charges :  Rs 12,500');	
			orefftvPr=0;
		}
		if((document.orchid.orhite[1].checked)&&(document.orchid.orswhite[1].checked ))
		{
		alert ('Price of membership is : Rs 243,400 '+'\n'+' Downpayment Price is :  Rs 218,400 '+'\n'+'Administrative Charges :  Rs 12,500');	
			orefftvPr=1;
		}	
		if((document.orchid.orhite[2].checked)&&(document.orchid.orswhite[1].checked ))
		{
		alert ('Price of membership is : Rs 280,500'+'\n'+' Downpayment Price is :  Rs 255,500 '+'\n'+'Administrative Charges :  Rs 12,500');
	
				orefftvPr=2;
		}	
		//if the booking for one bedroom
		if((document.orchid.orhite[0].checked)&&(document.orchid.orswhite[0].checked))
		{
		alert ('Price of membership is : Rs 182,500'+'\n'+' Downpayment Price is :  Rs 152,500 '+'\n'+'Administrative Charges :  Rs 12,500');	 
				  

			orefftvPr=3;
		}	
		if((document.orchid.orhite[1].checked)&&(document.orchid.orswhite[0].checked ))
		{
		alert ('Price of membership is : Rs 200,000'+'\n'+' Downpayment Price is :  Rs 175,000 '+'\n'+'Administrative Charges :  Rs 12,500');	 
			
			orefftvPr=4;
		}	
		if((document.orchid.orhite[2].checked)&&(document.orchid.orswhite[0].checked ))
		{
		alert ('Price of membership is : Rs 235,000'+'\n'+' Downpayment Price is :  Rs 210,000'+'\n'+'Administrative Charges :  Rs 12,500');

			
			orefftvPr=5;
		}	
		orcntPr.value=orcontact_price[orefftvPr];
		orintPr.value=oronline_ref[orefftvPr];
		orcntPr2.value=parseInt(orcontact_price[orefftvPr]/44);
		orintPr2.value=parseInt(oronline_ref[orefftvPr]/44);
}


