<!--
window.onload = popupScript;
function popupScript() {
	if (!document.getElementById || !document.getElementsByTagName) return false;
	var theCaller = document.getElementsByTagName('area');
	for ( i=0; i < theCaller.length; i++) {
		theCaller[i].onclick = function() {
			var theId = this.getAttribute('id');
			var theBox  = 'p_' + theId;
			var theChange = new Fx.Styles(theBox, { duration: 500});
//			theChange.hide();
//			theChange.toggle();
			theChange.start({
				'opacity': [0,1]
			});
			return false;
		}
	}
	var theCloser = document.getElementById('rep_holder').getElementsByTagName('a');
	for ( i=0; i < theCloser.length; i++) {
	if (theCloser[i].className == 'close_box') {
			theCloser[i].onclick = function() {
				var theParent = this.parentNode.parentNode.getAttribute('id');
//				var theChange = new fx.Opacity(theParent, { duration: 500});
//				theChange.toggle();
				var theChange = new Fx.Styles(theParent, { duration: 500});
				theChange.start({
					'opacity': [1,0]
				});
				return false;
			}
		}
	}
}
-->