// JavaScript Document

/* ---- Contact form Validtaion ----- */
// Name
function changename1()
{

if (document.contactform.name.value == "")
{
document.contactform.name.value = "Name:";
//alert ("type text");
}
}
function changename2()
{

if (document.contactform.name.value == "Name:")
{
document.contactform.name.value = "";
}

}
// Company

function changename3()
{

if (document.contactform.company.value == "")
{
document.contactform.company.value = "Company:";
//alert ("type text");
}
}
function changename4()
{

if (document.contactform.company.value == "Company:")
{
document.contactform.company.value = "";
}

}
// email
function changename5()
{

if (document.contactform.email.value == "")
{
document.contactform.email.value = "Email Address:";
//alert ("type text");
}
}
function changename6()
{

if (document.contactform.email.value == "Email Address:")
{
document.contactform.email.value = "";
}

}
// phone
function changename7()
{

if (document.contactform.phone.value == "")
{
document.contactform.phone.value = "Phone:";
//alert ("type text");
}
}
function changename8()
{

if (document.contactform.phone.value == "Phone:")
{
document.contactform.phone.value = "";
}

}
// massage
function changename9()
{

if (document.contactform.comments.value == "")
{
document.contactform.name.comments = "Question or Comments:";
//alert ("type text");
}
}
function changename10()
{

if (document.contactform.comments.value == "Question or Comments:")
{
document.contactform.comments.value = "";
}

}
// maillist
function changename11()
{

if (document.contactform.mailinglist.value == "")
{
document.contactform.mailinglist.value = "Email address:";
//alert ("type text");
}
}
function changename12()
{

if (document.contactform.mailinglist.value == "Email address:")
{
document.contactform.mailinglist.value = "";
}

}