<!-- Begin
function formHandler(form) {
var windowprops = "width=800,height=600,location=yes,"
+ "scrollbars=yes,toolbar=yes,menubars=yes,resizable=yes,status=yes";

var URL = form.site.options[form.site.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}
function makeMyMenu() {
document.write ('<form><select name="site" style="font-size:12px;color: #003C5E;font-family: arial;background-color:#ffffff;" onChange="formHandler(this.form)">');
document.write('<option value="http://www.shop4offers.co.uk/">Shop Search...</option>');
document.write('<OPTION VALUE="safe_shop.php?m=Accepted">Accepted</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=AL - Loans">Alliance & Leicester</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Approved Car Finance">Approved Car Finance</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Debtbuster Loans">Debtbuster Loans</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Decision Finance">Decision Finance</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=First Plus">First Plus</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Freedom - Loans">Freedom Finance</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Hfs">Hfs Loans</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Loan One">Loan One</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Promise - Loans">Promise Finance</OPTION>');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
