function add2cart(PN, siz, weight, price){ document.codeform.id.value = PN; document.codeform.weight.value = weight; document.codeform.price.value = price; var infotext = " Body Material: Stainless Steel
"+ " Size & Connection: "+siz+" NPT (female)
"+ " Seats: PTFE | Stem Seals: PTFE
"+ " Actuator: Manual Handle with Locking Device"; 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; }