// <![CDATA[
function close_popup (x,y) {
	new Ajax.Updater(x, y, {
		evalScripts:true 
		}
	);
}
agg_popup = function(x, y, z) {
	var xScroll2, yScroll2;

	if (self.pageYOffset) {
		yScroll2 = self.pageYOffset;
		xScroll2 = self.pageXOffset;
	} else if (document.documentElement && document.documentElement.scrollTop){	 // Explorer 6 Strict
		yScroll2 = document.documentElement.scrollTop;
		xScroll2 = document.documentElement.scrollLeft;
	} else if (document.body) {// all other Explorers
		yScroll2 = document.body.scrollTop;
		xScroll2 = document.body.scrollLeft;	
	}
	arrayPageScroll = new Array(xScroll2,yScroll2) 
	ilvalore_y=arrayPageScroll[1]+60;
	document.getElementById(z).style.top=ilvalore_y+'px';

	new Ajax.Updater(x, y, {
		evalScripts:true 
		}
	);
}
// ]]>
