Making an image map that will select between a choice. Make file in Site1 called "imagemapsupport.js" containing the following code. // START of imagemapsupport.js var formno, fieldno, docform; function locatefield(fname){ formno = ''; fieldno = ''; // look through all forms 'till one containing field "fname" var tf = -1; var te = 0; var df = document.forms; var i = df.length - 1; for ( var j = 0; j <= i; j++ ) { var k = df[j].length - 1; for ( var l = 0; l <= k; l++ ) { if ( df[j].elements[l].name == (fname) ) { tf = j; te = l; } } } if ( tf < 0 ) { alert('Cannot find form element' + fname); return false; } else { formno = tf; fieldno = te; docform = df[tf]; return docform.elements[fieldno]; } } function setoption(prodref,attribcount,select) { if ( location.href.indexOf('PreviewHTML') != -1 ) attribcount--; var thisselect = locatefield('v_' + prodref + '_' + attribcount); thisselect.selectedIndex = select - 1; } // END of imagemapsupport.js Place the following line into Act_Primary.html (just above the