// kproduct.js

function ProductList(room, name,  desc, mfr)
 {
 this.room = room
 this.name = name
 this.description  = desc
 this.manufacturer = mfr
 this.displayProductInfo = ProductDesc_displayProductInfo
}

function ProductList_displayProductInfo() {
 document.writeln("<table border='1' align='center' valign='top'>")
 document.writeln("<tr><th class='productlist'>Name:</th><td>"+this.name+"</td></tr>")
 document.writeln("<tr><th class='productlist'>Description:</th><td>"+this.description+"</td></tr>")
 document.writeln("<tr><th class='productlist'>Manufacturer:</th><td>"+this.mfr+"</td></tr>")
 document.writeln("</table>")
 document.writeln("</p>")
}



function klistProduct(n) {
 setCookie("listproduct",n)
 window.location.href = "listproduct.htm"
}
