<!-- H.O.L.Y. Army source, images, and content are copyright 2003. All Rights Reserved Worldwide. -->

<!-- Hide from old browsers

<!-- Start code to set scrollbar color -->

function scrollbarColor()
{
 document.body.style.scrollbarFaceColor='#FFFFFF';
 document.body.style.scrollbarBaseColor='#FFFFFF';
 document.body.style.scrollbarTrackColor='#D0B0F5';
 document.body.style.scrollbarArrowColor='#6B006B';
 document.body.style.scrollbarHighlightColor='#6B006B';
 document.body.style.scrollbarShadowColor='#6B006B';
 document.body.style.scrollbarDarkShadowColor='#6B006B';
 document.body.style.scrollbar3dLightColor='#6B006B';
}

<!-- End code to set scrollbar color -->

<!-- Start code to prevent right clicking of mouse -->

//-----Detects browser type
bName = navigator.appName;

//-----
function noRightClick(click)
{
 if (bName == 'Netscape' && click.which > 1)
  {
   alert("Deuteronomy 5.19: You shall not steal.");
   return false;
  }
 else if (bName == 'Microsoft Internet Explorer' && event.button > 1)
  {
   alert("Deuteronomy 5.19: You shall not steal.");
   return false;
  }
 return true;
}

//-----Catches mouse clicks
document.onmousedown = noRightClick;
document.onmouseup = noRightClick;

<!-- End code to prevent right clicking of mouse -->

<!-- Start code to select random banner -->

//-----bannerArray constructor function
function bannerArray(len)
{
 for (var i = 0; i < len; i++) this[i] = null;
 this.length = len;
}

//-----Variable to control the size of banner image, link, and text arrays
var arraySize = 2;

//-----Creates image array for banners
var image = new bannerArray(arraySize);
image[0] = "../images/url-basic.gif";			//Image # 1
image[1] = "../images/url-anim.gif";			//Image # 2

//-----Creates link array for banners
var link = new bannerArray(arraySize);
link[0] = "http://www.holyarmy.com";			//Link # 1
link[1] = "http://www.holyarmy.com";			//Link # 2

//-----Creates alt text array for banners
var text = new bannerArray(arraySize);
text[0] = "H.O.L.Y. Army";				//Alt Text # 1
text[1] = "H.O.L.Y. Army";				//Alt Text # 2

//-----Declares variables for random banner selection
var today = new Date();
var select = today % arraySize;

<!-- End code to select random banner -->

<!-- Start code to launch new window for popup links -->

function popupWin(page)
{
 if(screen.width < 1024)
  {
   popup=window.open(page,"popup","width=450,height=450,menubar=no,toolbar=no,status=no,scrollbars=yes,resize=no");
  }
 else if(screen.width >= 1024)
  {
   popup=window.open(page,"popup","width=500,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes,resize=no");
  }
 else
  {
   popup=window.open(page,"popup","width=450,height=450,menubar=no,toolbar=no,status=no,scrollbars=yes,resize=no");
  }
}

<!-- End code to launch new window for popup links -->

// -->

<!-- H.O.L.Y. Army source, images, and content are copyright 2003. All Rights Reserved Worldwide. -->
