//NBGenericLib.js // //NRMA New Business 2000 // //generic functions function buildStringList(stringList, key, value) /* This function is used to facilitate the packing of data to be sent to the server. A method on the web server is used to unpack this data into a Vector of Hashtables. The main purpose is to transfer lists of data to the server. */ { if (stringList == null) stringList = "%%" + key + "%%" + value; else { stringList = stringList + "%%" + key + "%%" + value; } return stringList; } function helpFile_onclick(page) { window.open(page,"_"+"blank","toolbars=no,menubars=no,location=no,scrollbars=yes,resizable=yes,width=500,height=200"); } function See(page) { window.open(page, "_"+"blank", "toolbar=no,menubar=yes,location=no,scrollbars=yes,resizable=no,width=677,height=494"); } function openBrowserWin_onclick(page) { window.open(page,"","toolbar,menubar,location,scrollbars=yes,resizable=yes"); }