<!-- 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/money.htm">Shop Search...</option>');
document.write('<OPTION VALUE="safe_shop.php?m=AL - Banking" target="_blank">A & L - Premier Direct Account</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Cahoot" target="_blank">Cahoot</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Central Capital" target="_blank">Central Capital</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=First Active" target="_blank">First Active - Mortgages</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=NatWest" target="_blank">NatWest</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Promise - Mortgages">Promise F - Mortgages</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Smile">Smile Current Account</OPTION>');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
