// Focus Function ***************************** function fnSetFocus(sFormName,sName,sErrorDesc) { alert(sErrorDesc) document[sFormName][sName].focus() } // Focus & Select Function ************************** function fnSetFocusSelect(sFormName,sName,sErrorDesc) { alert(sErrorDesc) document[sFormName][sName].focus() document[sFormName][sName].select() } // b1 CheckAll ***************************** function fnCheckAll(objThis,sName) { var sFormName=objThis.form.name; var sObjectName; var sCompareString; sStatus=objThis.checked==true?true:false for(nX=0;nX