


function openNewsStory(pagename) { 

	width='400';
	height='400';
	
	//width calc
	br_width=window.innerWidth;
	if(!br_width)
		br_width=document.body.clientWidth;
	x = (br_width/2) - (width/2);
	//height calc
	br_height=window.innerHeight;
	if(!br_height)
		br_height=document.body.clientHeight;
	y = (br_height/2) - (height/2);	
	
	win = window.open(pagename, 'news', 'left='+x+',top='+y+',scrollbars=no,statusbar=no,toolbar=no.menubar=no,location=no,width='+width+',height='+height+'');
	win.focus();
}
