function REDIRECT(Value, Address, AutoResponder) {
this.Value = Value;
this.Address = Address;
this.AutoResponder = AutoResponder;
}

var myRedirect = new Array();




  ////////////////////////////////////////
 //This is where you edit the redirects//
////////////////////////////////////////
myRedirect["Too expensive"] = new REDIRECT('Too expensive', 'http://www.dermatend.com/too-expensive.htm', '407523');
myRedirect["Scared it will not work"] = new REDIRECT('Scared it will not work', 'http://www.dermatend.com/it-will-work.htm', '407524');
myRedirect["Think it may be a scam"] = new REDIRECT('Think it may be a scam', 'http://www.dermatend.com/not-a-scam.htm', '407526');
myRedirect["Looking at competition"] = new REDIRECT('Looking at competition', 'http://www.dermatend.com/competitors.htm', '407527');
myRedirect["Need more information"] = new REDIRECT('Need more information/Doing research', 'http://www.dermatend.com/information.htm', '407528');
myRedirect["Other"] = new REDIRECT('Other', 'http://www.dermatend.com/other.htm', '407529');



  ///////////////////////////////
 //Do not edit below this line//
///////////////////////////////
function SetReturn() {
 user_input = document.form1.field1.value;
var RedirectValue = myRedirect[user_input].Address;
var ARValue = myRedirect[user_input].AutoResponder;
document.form1.ARThankyouURL.value = RedirectValue;
document.form1.AR.value = ARValue;
}