		self.name="aggmain";
		
		/* for popup window*/
		function MM_openBrWindow(theURL,winName,features) { //v2.0
		  window.open(theURL,winName,features);
		}
		
		
		/*for popup standard large win*/
		function popWindow(thisurl)
		{
			window.open(thisurl,'newpage','width=570, height=500, scrollbars=yes, resizable=yes, status=yes');
		}
		
		/*for popup win with specified dimension*/
		function popCustomWindow(thisurl, thiswidth, thisheight)
		{
			tfeatures = "'status=yes, " + 'height=' + thisheight + ', width=' + thiswidth + ", scrollbars=yes, resizable=yes'";
			window.open(thisurl,'newpage', tfeatures);
		}