window.onload=function()
{
var defaultNameText='Name...';
var def=document.getElementById('name');
def.onfocus = function()
{
this.style.color='#000';
this.value=(this.value==defaultNameText)?'':this.value;
this.style.fontStyle='normal';
this.select();}
def.onblur= function()
{
if(this.value=='')
{
this.value=defaultNameText;
this.style.color='#c0c0c0';
}
else this.value;
}
// def.focus();
def.blur();

var defaultEmailAddressText='Email Address...';
var def=document.getElementById('email');
def.onfocus = function()
{
this.style.color='#000';
this.value=(this.value==defaultEmailAddressText)?'':this.value;
this.style.fontStyle='normal';
this.select();}
def.onblur= function()
{
if(this.value=='')
{
this.value=defaultEmailAddressText;
this.style.color='#c0c0c0';
}
else this.value;
}
// def.focus();
def.blur();



var defaultAddressText='Address...';
var def=document.getElementById('address');
def.onfocus = function()
{
this.style.color='#000';
this.value=(this.value==defaultAddressText)?'':this.value;
this.style.fontStyle='normal';
this.select();}
def.onblur= function()
{
if(this.value=='')
{
this.value=defaultAddressText;
this.style.color='#c0c0c0';
}
else this.value;
}
// def.focus();
def.blur();

var defaultPostText='Post Code...';
var def=document.getElementById('postcode');
def.onfocus = function()
{
this.style.color='#000';
this.value=(this.value==defaultPostText)?'':this.value;
this.style.fontStyle='normal';
this.select();}
def.onblur= function()
{
if(this.value=='')
{
this.value=defaultPostText;
this.style.color='#c0c0c0';
}
else this.value;
}
// def.focus();
def.blur();
}