function FindAddress(){
    var postcode
    postcode = document.getElementById("postcode").value;
	window.open ('getaddress_new.asp?postcode='+postcode,'WinGetaddress','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, width=200, height=220,left=291,top=300');
}


function submitRegForm(){
	GetInterests();
	return true;
}


function GetInterests(){

	var i;
	var chks = document.getElementsByTagName('input');
	var strChecked;
	
	strChecked = '';

	for (i = 0; i < chks.length; i++){
		if (chks[i].id.indexOf('chkInterest') != -1){
			if (chks[i].checked){
				if (strChecked == ''){
					strChecked = chks[i].id.substring(11);
				}else{
					strChecked += ',' + chks[i].id.substring(11);
				}
			}
		}
	}
	document.getElementById('hdninterestids').value = strChecked;
}