	/*******   javascript for popup windows.      *******/
	<!--
	function WinCenter(wfile, wname, ww, wh) {
		var maxwidth, maxheight;
		var xpos, ypos;
		
		maxwidth 	= screen.availWidth;
		maxheight	= screen.availHeight;
		xpos = maxwidth/2 - ww/2;
		ypos = maxheight/2 - wh/2 -20;
		
		return open(wfile, wname,"left="+xpos +",top="+ypos +",width="+ww +",height="+wh +",resizable=1,scrollbars=1,menubar=no,location=no");
	}
	
	function Readnews(newsid)
	{		
		WinCenter("readnews.aspx?nid="+newsid,"ReadNews",630,550);
	}
	function MultiGallery(newsid,revision,language)
	{		
		WinCenter("mediagallery.aspx?id="+newsid+"&vid="+revision+"&ln="+language,"Gallery",630,550);
	}
	
	-->