// SIMPLE REDIRECTS - NOT INTENDED TO BE SECURE! function handler() { var theLink = ""; switch ( document.theForm.source_cd.value.toUpperCase()) { // TEST OFFERS case 'MEMBERBENEFITS' : // theLink = "/membercards/offer_MemberBenefits.htm"; break; default: alert("We cannot recognise that code. Please check your Internet Code and try again. For further assistance please call 13 28 58"); theLink = "/membercards/index.htm"; break; } if ( theLink > "" ) location = theLink; return false; }