
function AssessApp() {

var missinginfo = "";

if(document.validate.radbut1[0].checked){
missinginfo += "\n     -  You must be a UK resident";
}
if(document.validate.radbut2[0].checked) {
missinginfo += "\n     -  You must have a regular income";
}
if(document.validate.radbut3[0].checked) {
missinginfo += "\n     -  You must be over 18yrs old";
}
if(document.validate.radbut4[0].checked) {
missinginfo += "\n     -  You must be a homeowner";
}
if (missinginfo != "") {
missinginfo = "We are sorry. It is unlikely we will be able to help you\nbecause of the following reason(s):\n" +
missinginfo + "\n" +
"\nThank you for your interest in our company";
alert(missinginfo);
return false;
}
else {
OpenNew('ap_frame.html','550','550')
return;
}
}

function SetProps(w,h) {

l = ((screen.width - w) /2);
t = ((screen.height - h) /2);

winprops = 'toolbar=0,location=0,status=0,scrollbars=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t;
return winprops;
}

function OpenNew(url,w,h) {

SetProps(w,h);

Quote = window.open(url,'Quote',winprops);
Quote.window.focus();
}