// JavaScript Document
<!-- Copyright 2005, Sandeep Gangadharan -->
<!-- For more free scripts go to http://sivamdesign.com/scripts/ -->

<!--
function smallwin(val) {
SW=window.open('/product-popup.aspx?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
}


function smallwin2(val) {
SW=window.open('/glossary.aspx#' + val,'NewWin','toolbar=no,menubar=no,location=no,resizable=no,status=no,width=440,height=440,scrollbars=yes')
                   // 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
}

function fnProductRollBg(chosen, objectID) {
	if(chosen == "roll") {
		document.getElementById(objectID+"-1").className="rolltop chgbkg";
		document.getElementById(objectID+"-2").className="rollbtm";
		document.getElementById(objectID).className="";
	} else {
		document.getElementById(objectID+"-1").className="outtop";
		document.getElementById(objectID+"-2").className="outbtm";
	}
}
// -->
