function Compaynews() {
	var obj = document.getElementById("compaynews").getElementsByTagName("a");
	for (var i=0; i<obj.length; i++) {
		obj[i].onclick=function() {winopen(this.href);return false;}
	}
}
function winopen(url){
	  var h = 520;   
	  var w = 500;   
	  var newWin=window.open(url,"","height="+h+",width="+w+",status=no,toolbar=no,location=no,resizable=no,scrollbars=yes,menubar=no");   
	  if(document.all){ newWin.moveTo((screen.width-w)/2,(screen.availHeight-h)/2); }   
}
function __news(url){
	  var h = 520;   
	  var w = 500;   
	  window.open(url,"","height="+h+",width="+w+",status=no,toolbar=no,location=no,resizable=no,scrollbars=yes,menubar=no,left=100,top=100");   
}
Compaynews();

