<!--
function clearName() {
if (document.mailmyform_form.name.value == "Your first and last name")
{
document.mailmyform_form.name.value = "";
}}
function clearEmail() {
if (document.mailmyform_form.email.value == "Your e-mail address")
{
document.mailmyform_form.email.value = "";
}}
function clearPhone() {
if (document.mailmyform_form.phone.value == "Your phone number")
{
document.mailmyform_form.phone.value = "";
}}
function clearAddress() {
if (document.mailmyform_form.address.value == "Your address")
{
document.mailmyform_form.address.value = "";
}}
function clearMsg() {
if (document.mailmyform_form.msg.value == "Specify what you are ordering in this message field")
{
document.mailmyform_form.msg.value = "";
}}
//-->