<!--
function glos(kw) {
	glossary = window.open('FAQglossary.aspx?kw=' + kw, 'FAQglossary', "status=1,scrollbars=1,resizable=1,screenX=50,screenY=50,top=50,left=50,toolbar=0,location=0,width=700,height=500");
}

//menu rollover functions
function mOn(tagName) {
	var tmpSrc = tagName.src;
	tagName.src = tmpSrc.substring(0,tmpSrc.length-4) + 'On.' + tmpSrc.substring(tmpSrc.length-3,tmpSrc.length);
}

function mOff(tagName) {
	var tmpSrc = tagName.src;
	tagName.src = tmpSrc.substring(0,tmpSrc.length-6) + tmpSrc.substring(tmpSrc.length-4,tmpSrc.length);
}

// Mouseover menu for product button navigation.
	var isDOM = (document.getElementById != null);
	var agt=navigator.userAgent.toLowerCase();
	var isIE = (agt.indexOf("msie") != -1);
	var activeLayer = '';
	var tmOut = '';
	
	function showLayer(layerID, wID){
		if (activeLayer != '' && activeLayer != layerID) hideLayer();
		if (isDOM) {
			document.getElementById(layerID).style.visibility = 'visible';
			// position the menu based on browser
			if (wID==1){ 
				if (isIE) {
					document.getElementById(layerID).style.left = ((((document.body.offsetWidth)-760)/2)-11)+'px';
				}
				else {
					document.getElementById(layerID).style.left = ((((window.outerWidth)-760)/2)-12)+'px';
				}
			}
			else {
				if (isIE) {
					document.getElementById(layerID).style.left = ((((document.body.offsetWidth)-760)/2)+355)+'px';
				}
				else {
					document.getElementById(layerID).style.left = ((((window.outerWidth)-760)/2)+360)+'px';
				}
			}
		}
		
		activeLayer = layerID;
		cTm();
	}
	
	function hideLayer(){
		
		if(isDOM) {
			document.getElementById(activeLayer).style.visibility = 'hidden';
		}
		
		activeLayer='';
		cTm();
	}
	
	function tmHide(){
		cTm();
		tmOut = setTimeout('hideLayer()', 500);
	}
	
	function cTm() {clearTimeout(tmOut);}
	
function newwin(url,pop_name,w,h) {
   	if((w==0) && (h==0))
    {
       window.open(url,pop_name,"status=1,scrollbars=1,resizable=1,screenX=100,screenY=100,top=100,left=100,toolbar=0,location=0,width="+self.outerWidth+",height="+self.outerHeight);
    }
    else
    {
		window.open(url,pop_name,"status=0,scrollbars=1,resizable=1,screenX=100,screenY=100,top=100,left=100,toolbar=0,location=0,width="+w+",height="+h);
    }
}	

ns4 = (document.layers)? true:false;
ie4 = (document.all)? true:false;

function showPreview(imagePath, description) {
	var version=navigator.appVersion;
	
	if (ns4) {
		obj = document.layers.previewLayer;
		
		//obj.xpos = window.pageXOffset;
		obj.xpos = 10;			
		obj.ypos = window.pageYOffset;
		
		obj.document.open();
		if (imagePath != '') obj.document.write('<img src="' + imagePath + '"><br><br>' + description);
		else obj.document.write(description);
		obj.document.close();
		
		document.layers.previewLayer.visibility = "show";
	}
	else if (ie4) {
		obj = document.all.previewLayer.style;
		
		//obj.xpos = document.body.scrollLeft;
		obj.xpos = (((document.body.offsetWidth)-762)/2)-18;
		
		obj.ypos = document.body.scrollTop;
		if (imagePath != '') document.all.previewLayer.innerHTML = '<img src="' + imagePath + '" border="1"><br><br>' + description;
		else document.all.previewLayer.innerHTML = description;
		document.all.previewLayer.style.visibility = "visible";
	} 
	
	if (obj.ypos >= 0 && obj.ypos <= 325) obj.ypos = 325;
	else obj.ypos = obj.ypos + 30;
	
	obj.left = obj.xpos;
	obj.top = obj.ypos;
}

function hidePreview() {
	//if (ns4) document.layers.previewLayer.visibility = "hide";
	//else if (ie4) document.all.previewLayer.style.visibility = "hidden";
}
//-->