<!--
	function ImageON(imgName) { 
		document.images[imgName].src = 'img/menu_in/' + imgName + 'ON.gif'; 
	} 
	function ImageOFF(imgName) { 
		document.images[imgName].src = 'img/menu_in/' + imgName + '.gif'; 
	}
	function OpenPOP(podFolder, popName) {
		var lar = 500;
		var alt = 550;		
		var x = ((screen.width/2) -(lar/2));
		var y = ((screen.height/2)-(alt/2));
  		var POP = window.open(podFolder+'/'+popName+'.htm','pop','scrollbars=yes,width='+lar+',height='+alt+',screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y);
		POP.focus();
	}

	function OpenPOP2(podFolder, popName) {
		var lar = 500;
		var alt = 550;		
		var x = ((screen.width/3) -(lar/3));
		var y = ((screen.height/3)-(alt/3));
  		var POP = window.open('../'+podFolder+'/'+popName+'.htm','pop2','scrollbars=yes,width='+lar+',height='+alt+',screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y);
		POP.focus();
	}
		
	function OpenMailing() {
		var lar = 270;
		var alt = 122;		
		var x = ((screen.width/2) -(lar/2));
		var y = ((screen.height/2)-(alt/2));
		var POP = window.open('mailing.asp','popMAILING','width='+lar+',height='+alt+',screenX=' + x + ',left=' + x + ',screenY=' + y + ',top=' + y);
		POP.focus();
	}	
//-->