// JavaScript Document
// Created By James Ashcroft, December 2006
// This script sets values to the Subject and Product hidden fields based on what value is given to the id field

function CheckProductField() {

if(document.FormName.id[0].checked == true) { document.FormName.Product.value = 'zetafax_full'; }
if(document.FormName.id[1].checked == true) { document.FormName.Product.value = 'zetafax_quick'; }

}

function CheckSubjectField() {

if(document.FormName.id[0].checked == true) { document.FormName.Subject.value = 'Zetafax Duo Full Trial Request'; }
if(document.FormName.id[1].checked == true) { document.FormName.Subject.value = 'Zetafax Duo Evaluation Download'; }

}
