/* Ferrari Turbo Web Site Form Manipulation */
/* Copyright (C) Richard Murrant - mail@ferrariturbo.com */ 
/* <SCRIPT LANGUAGE="JavaScript" SRC="http://www.ferrariturbo.com/Common.form.js"></SCRIPT>
/* Version: 22-02-2001 */

subject2Value = new String
function subjectCheck(){
subjectValue = new String (document.contact.subject1.value);
if (subjectValue.indexOf('ther') > 0){document.contact.subject2.maxLength = 65
	document.contact.subject2.value = subject2Value;}
	else{if (document.contact.subject2.value.length > 0){subject2Value = (document.contact.subject2.value);}
	document.contact.subject2.maxLength = 0
	document.contact.subject2.value = ''}
document.contact.subject.value = document.contact.subject1.value;
}

function subjectCheck2(){
document.contact.subject.value = document.contact.subject2.value;
}

function mailName(){
document.contact.realname.value = document.contact.firstname.value + ' ' + document.contact.lastname.value;
}