<!-- BEGIN BLOCK ERROR SCRIPT -->
function blockError(){return true;}
window.onerror = blockError;
// End -->
<!-- END BLOCK ERROR SCRIPT -->


<!-- BEGIN Image Slideshow #1 Code (Original from CodeLifter.com) -->
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 5;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'Images/ContactsPic1.jpg'
Pic[1] = 'Images/ContactsPic2.jpg'
Pic[2] = 'Images/ContactsPic3.jpg'
Pic[3] = 'Images/ContactsPic4.jpg'
Pic[4] = 'Images/ContactsPic5.jpg'
Pic[5] = 'Images/ContactsPic6.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// body tag must include: onLoad="runSlideShow()"
// End -->
<!-- END Image Slideshow #1 Code -->


<!-- BEGIN Download File Script -->
<!-- Original:  ArjoGod, Shauna Merritt -->
<!-- Modified By:  Ronnie T.oore, Editor -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
extArray = new Array(".pdf", ".doc");
function LimitAttach(form, file) {
allowSubmit = false;
if (!file) return;
while (file.indexOf("\\") != -1)
file = file.slice(file.indexOf("\\") + 1);
ext = file.slice(file.indexOf(".")).toLowerCase();
for (var i = 0; i < extArray.length; i++) {
if (extArray[i] == ext) { allowSubmit = true; break; }
}
if (allowSubmit) form.submit();
else
alert("You may only upload files that end in:  " 
+ (extArray.join("  ")) + "\nPlease select a new "
+ "file to upload and submit again.");
}
//  End -->
<!-- END Download File Script -->