﻿		<!--
			function newWindow(page, name, width, height) {
				var left;
				var top;
				var settings;
				var newWindow;

				left = (windowWidth() - width) / 2;
				top = (windowHeight() - height) / 2;

				settings = 'width=' + width + ',';
				settings += 'height=' + height + ',';
				settings += 'left=' + left + ',';
				settings += 'top=' + top + ',';
				settings += 'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes';
				
				newWindow = window.open(page, name, settings);
				if (window.focus) newWindow.window.focus();
			}

function windowWidth() {
		var width = 0;

		//Non-IE
		if (typeof(window.innerWidth) == 'number') {
			width = window.innerWidth;
		}
		//IE 6+ in 'standards compliant mode'
		else if (document.documentElement && document.documentElement.clientWidth) {
			width = document.documentElement.clientWidth;
		}
		//IE 4 compatible
		else if (document.body && document.body.clientWidth) {
			width = document.body.clientWidth;
		}
		
		return width;
	}

	function windowHeight() {
		var height = 0;

		//Non-IE
		if (typeof(window.innerHeight) == 'number') {
			height = window.innerHeight;
		}
		//IE 6+ in 'standards compliant mode'
		else if (document.documentElement && document.documentElement.clientHeight) {
			height = document.documentElement.clientHeight;
		}
		//IE 4 compatible
		else if (document.body && document.body.clientHeight) {
			height = document.body.clientHeight;
		}

		return height;
	}
	


	function Ask(type) {
	  return window.confirm('This will permanently delete ' + type + '!\n\nPlease confirm that you wish to proceed...');
	}

		//-->
	
	
var delayb4scroll=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeed=1 //Specify marquee scroll speed (larger is faster 1-10)
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?

////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var actualheight=''

function scrollmarquee(){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}

function initializemarquee(){
cross_marquee=document.getElementById("vmarquee")
cross_marquee.style.top=0
marqueeheight=document.getElementById("marqueecontainer").offsetHeight
actualheight=cross_marquee.offsetHeight
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marquee.style.height=marqueeheight+"px"
cross_marquee.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
}

//if (window.addEventListener)
//window.addEventListener("load", initializemarquee, false)
//else if (window.attachEvent)
//window.attachEvent("onload", initializemarquee)
//else if (document.getElementById)
//window.onload=initializemarquee

