function clearText(textInput) 
{
	if (textInput.value == 'Enter Keywords')
	 textInput.value = '';
};

function CopyFields(form)
{
	form.titleDel.value = form.title.value;	
	form.firstnameDel.value = form.firstname.value;	
	form.surnameDel.value = form.surname.value;	
	form.addr1Del.value = form.addr1.value;	
	form.addr2Del.value = form.addr2.value;	
	form.addr3Del.value = form.addr3.value;	
	form.addr4Del.value = form.addr4.value;	
	form.addr5Del.value = form.addr5.value;	
	form.postcodeDel.value = form.postcode.value;	
};

function openNewWin(URL, Width, Height)
{
//added New so can determine that opens in new window rather than excisting
    NewWin = window.open(URL, '', "width=" + Width + ",height=" + Height +",scrollbars,resizable");
    if (window.focus)
    {
	   NewWin.focus();
	}
};