<!-- 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/creditcards.htm">Shop Search...</option>');
document.write('<OPTION VALUE="safe_shop.php?m=American Express Red">American Express Red</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=American Express Nectar">American Express Nectar</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Barclaycard Business">Barclaycard</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Barclaycard Business">Barclaycard Business</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Capital One - Credit Cards">Capital One</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Co op Credit Cards">Co op</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Egg Card">Egg Card</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Hilton Card">Hilton</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Marbles">Marbles</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=MBNA">MBNA</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=MBNA Rewards">MBNA Rewards</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=NatWest">NatWest</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=RBS">RBS</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=RSPCA - Credit Card">RSPCA</OPTION>');
document.write('<OPTION VALUE="safe_shop.php?m=Virgin Money">Virgin</OPTION>');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();

// End -->
