﻿/**
 * @author cuong.tran
 * @email cuong.tran@enclaveit.com, cuongtranquoc@gmail.com
 * @function ConfirmTerm And Condition
 * @version 2.0
 * @create date: 10/27/2009 
 * @last update: 08 Nov 2010
**/function continueBooking(){
	var agree_cbox = document.getElementById("agree_cbox");
	if (agree_cbox){
		if (agree_cbox.checked) {		
			var term_form = getForm("term_form");
			var action = document.getElementById("action");
			if (term_form){
				action.value = 1;					
				term_form.submit();
			}
			return true;
		}
	}
	return false;
};
function processStatus(field){
	var btncontinue = document.getElementById("btncontinue");
	if (btncontinue){
		if (field.checked){			
			btncontinue.style.display="";
		}else{
			btncontinue.style.display="none";
		}		
	}
};
