//=============================================================================
// File    : SetFocus.js
// Author  : Eric Woodruff  (Eric@EWoodruff.us)
// Updated : 07/04/2003
function BP_funSetFocus(strID,bFindCtrl){var nPgIdx,nIdx,nPos,ctl,ctlParent,htmlCol;if(bFindCtrl==false)ctl=document.getElementById(strID);else{htmlColl=document.getElementsByTagName("*");for(nIdx=0;nIdx<htmlColl.length;nIdx++){ctl=htmlColl[nIdx];if(typeof(ctl.id)!="undefined"){nPos=ctl.id.indexOf(strID);if(nPos!=-1&&ctl.id.substr(nPos)==strID)break;}else ctl=null;}}if(ctl==null||typeof(ctl)=="undefined")return false;if(typeof(ctl.parentElement)!="undefined"){ctlParent=ctl.parentElement;while(ctlParent!=null&&ctlParent.tagName!="PageView")ctlParent=ctlParent.parentElement;if(ctlParent!=null&&ctlParent.tagName=="PageView"){nPgIdx=ctlParent.PageIndex;ctlParent=ctlParent.parentElement;if(ctlParent!=null&&ctlParent.tagName=="MultiPage"){ctlParent.selectedIndex=nPgIdx;htmlColl=document.getElementsByTagName("TabStrip");for(nIdx=0;nIdx<htmlColl.length;nIdx++)if(htmlColl[nIdx].targetID==ctlParent.id){htmlColl[nIdx].selectedIndex=nPgIdx;break;}}}}if(ctl.tagName=="TABLE"){ctl=ctl.cells(0);ctl=ctl.firstChild;}ctl.focus();if(ctl.type=="text"||ctl.tagName=="TEXTAREA")ctl.select();return false;}