// +----------------------------------------------------------------------+ // | OpenConf | // +----------------------------------------------------------------------+ // | Copyright (c) 2002-2009 Zakon Group LLC. All Rights Reserved. | // +----------------------------------------------------------------------+ // | This source file is subject to the OpenConf License, available on | // | the OpenConf web site: www.OpenConf.com | // +----------------------------------------------------------------------+ // 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('Click to Close
' + field.innerHTML + '
'); popupObj.focus(); } } }