<!--

function formcheck(theForm)
{

  if (!theForm.firstname.value)
  {
    alert("Please enter a value for the \"Your First Name\" field.");
    theForm.firstname.focus();
    return (false); 
  }
  
  if (!theForm.surname.value)
  {
    alert("Please enter a value for the \"Your Last Name\" field.");
    theForm.surname.focus();
    return (false); 
  }  
 
  if ((!theForm.daytime_tel.value))
  {
    alert("Please enter a value for the \"Contact Telephone Number\" field.");
    theForm.daytime_tel.focus();
    return (false);
  }

	if (!theForm.amount_of_debt.value)
	{
    alert("Please chhose the amount of debt you have.");
    return (false);
	}

  return (true);
}

function openprivacy()
{
	myPopup = window.open('http://bad-credit-personal-loans-finance.co.uk/terms.htm','popupWindow','width=570,height=300,scrollbars=YES');
}




function openconfirm()
{
	myPopup = window.open('disclaimer.htm','popupWindow','width=570,height=300,scrollbars=YES');
}
//-->