<!-- 
//functions specific to the library

function openPopUp(theURL,winName,features) {
  window.open(theURL,winName,features);

}
function openExternalLink(theURL) {
  message = window.open(theURL,"","width=590,height=600,top=10,left=10,toolbar,status,scrollbars,resizable,");

}
function openMessageBox(theURL) {
  message = window.open(theURL,"","width=558,height=200,top=10,left=10");

}
function openHelpPage(theURL, theHeight) {
  message = window.open(theURL,"","width=420,height=" + theHeight + ",top=10,left=10,scrollbars,resizable");

}

// -->
