// +----------------------------------------------------------------------+ // | OpenConf | // +----------------------------------------------------------------------+ // | Copyright (c) 2002-2008 Zakon Group LLC. All Rights Reserved. | // +----------------------------------------------------------------------+ // | This source file is subject to the OpenConf license, that is bundled | // | with this package in the file LICENSE, and is available at: | // | http://www.zakongroup.com/technology/openconf-license.shtml | // +----------------------------------------------------------------------+ // popup - displays an informational blurb var popupObj; function popup(fldId) { if (document.getElementById) { var field; if (popupObj) { popupObj.close(); } if (field = document.getElementById(fldId)) { popupObj = window.open('','info','width=300,height=300,menubar=no,location=no,resizable=yes,scrollbars=yes,status=no'); popupObj.document.write('
' + field.innerHTML + ''); popupObj.focus(); } } }