function clearMessage(msgArea){
	if (document.forms[0].elements[msgArea].value == 'Please enter your message here'){
		document.forms[0].elements[msgArea].value = '';
	}
}
function setMessage(msgArea){
	if (document.forms[0].elements[msgArea].value == ''){
		document.forms[0].elements[msgArea].value = 'Please enter your message here';
	}
}


function clearName(txtName){
	if ( txtName.value == 'Full Name' ){
		txtName.value = '';
	}
}
function setName(txtName){
	if (txtName.value == ''){
		txtName.value = 'Full Name';
	}
}


function clearEmail(txtEmail){
	if ( txtEmail.value == 'Email Address' ){
		txtEmail.value = '';
	}
}
function setEmail(txtEmail){
	if (txtEmail.value == ''){
		txtEmail.value = 'Email Address';
	}
}

function clearCompany(txtCompany){
	if ( txtCompany.value == 'Company Name (Optional)' ){
		txtCompany.value = '';
	}
}
function setCompany(txtCompany){
	if (txtCompany.value == ''){
		txtCompany.value = 'Company Name (Optional)';
	}
}



