// the functions in this file require the supplementary library lib.js// These defaults should be changed the way it best fits your sitevar _POPUP_FEATURES = '';function raw_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_FEATURES;    if (isUndefined(target  )) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}function prtrt_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_PRTRT;    if (isUndefined(target  )) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}function bouq_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_BOUQ;    if (isUndefined(target  )) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}function single_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_SINGLE;    if (isUndefined(target  )) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}function form_popup(url, target, features) {    // pops up a window containing url optionally named target, optionally having features    if (isUndefined(features)) features = _POPUP_FORM;    if (isUndefined(target  )) target   = '_blank';    var theWindow = window.open(url, target, features);    theWindow.focus();    return theWindow;}