<!-- begin hiding script from old browsers

var dir = "http://www.drs-ss.com";

// mouseover function
function mOver(obj) {
	obj.src = dir + "/images/" + obj.name + "_dn.jpg";
}

// mouseout function
function mOut(obj) {
	obj.src = dir + "/images/" + obj.name + "_up.jpg";
}

var newWindow = null;

function closeWin() {
	if (newWindow != null) {
		if (!newWindow.closed) {	
			newWindow.close();
		}
	}
}

function errorHandler() {
  return true;
}

function openWin(url, winName) {
	
	closeWin();
	
	winOptions = "resizable,toolbar=no,location=no,scrollbars=no,width=500,height=600,left=0,top=0";
	
	newWindow = window.open(url, '', winOptions);
	newWindow.focus();
}



/*********************************************************************
* Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
* Visit http://www.dynamicdrive.com/ for full source code
* This notice must stay intact for use
*********************************************************************/

var speed = 1; //specify speed of scroll (greater=faster)

function moveDown() {
	var crossobj = document.getElementById("scrollText");
	var contentheight = crossobj.offsetHeight;
	if (parseInt(crossobj.style.top) >= (contentheight*(-1)+100))
		crossobj.style.top = parseInt(crossobj.style.top)-speed+"px";
	movedownvar = setTimeout("moveDown()",20);
}

function moveUp() {
	var crossobj = document.getElementById("scrollText");
	var contentheight = crossobj.offsetHeight;
	if (parseInt(crossobj.style.top) <= 0)
		crossobj.style.top = parseInt(crossobj.style.top)+speed+"px";
	moveupvar = setTimeout("moveUp()",20);
}

//end hiding -->
