// Custom Java Scriptfunction processRegistration () {		if (document.forms[0].os.options[document.forms[0].os.selectedIndex].text == "Download for Mac OS X Tiger/Leopard (Intel)") {		document.forms[0].redirect.value = "http://www.wrecksight.com/macdownload.html";	}	else {		document.forms[0].redirect.value = "http://www.wrecksight.com/windownload.html";	}			if (document.forms[0].emailaddress.value != document.forms[0].confirmemail.value) {		alert ("Please make sure you have entered your email correctly in both the email fields");		return;	}		if (document.forms[0].name.value == "" || document.forms[0].emailaddress.value == "" || document.forms[0].confirmemail.value == "" || document.forms[0].postcode.value == "") {		alert ("Please make sure you have entered your details in all of the required fields");		return;	}		document.forms[0].submit();	}