function add2cart(PN){ document.codeform.id.value = PN; document.codeform.weight.value = eval(PN+'_weight'); document.codeform.price.value = eval(PN+'_price'); var infotext = eval(PN+'_descrip'); var infotext = eval(PN+'_descrip'); document.codeform.prodseries.value = "Electric Actuator"; document.codeform.prodname.value = "I4 Series"; document.codeform.info.value = infotext; document.codeform.imgsrc.value = "/I4_electric_actuators/models/I4.jpg"; document.codeform.info.value = infotext; document.codeform.submit('add'); } function highlightRow(rowID) { // alert(rowID); document.getElementById(rowID).style.backgroundColor="#FFFFCC"; } function unhighlightRow(rowID,color) { // alert(rowID); document.getElementById(rowID).style.backgroundColor=color; }