// JavaScript Document
function rollbg(chosen, objectID) {
	if(chosen == "roll") {
		document.getElementById(objectID+"-1").className="rolltop hand chgbkg";
		document.getElementById(objectID+"-2").className="rollbtm hand";
		document.getElementById(objectID).className="";
	} else {
		document.getElementById(objectID+"-1").className="outtop hand";
		document.getElementById(objectID+"-2").className="outbtm hand";
	}
}

function smallwin(val) {
SW=window.open('/home-popup.asp?PopID=' + val,'NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=440,height=440,scrollbars=+scroll+')
                   // change the name, features and the figures of width and height above to customize the popup window.
SW.moveTo(20,20);  // change the #s at the left to adjust the left and top margins where the popup would open
}
