var intWindowWidth=0;
window.onload=function () {
   if (document.documentElement && document.documentElement.clientWidth && document.all) {
      window.innerWidth = document.documentElement.clientWidth;
      window.innerHeight = document.documentElement.clientHeight;
   }
   intWindowWidth=window.innerWidth;
   if (window.fnShowPDF) fnShowPDF();
   var arrFormElements=document.forms[0].elements;
   var blnGoOn=true;
   for (var i=0; i < arrFormElements.length; i++) {
      if (arrFormElements[i].type == "text" || arrFormElements[i].type == "password") arrFormElements[i].onfocus=function() {fnSelectText(this);};
      //else if (blnGoOn) blnGoOn=confirm(arrFormElements[i].name+": "+arrFormElements[i].type);
   }
}
window.onresize=function() {
   if (document.documentElement && document.documentElement.clientWidth && document.all) {
      window.innerWidth = document.documentElement.clientWidth;
      window.innerHeight = document.documentElement.clientHeight;
   }
   if (window.innerWidth != intWindowWidth) {
      document.location.reload();
   }
}
function fnSelectText(objField) {
   if (objField.select) objField.select();
}
