function renderString(args){
	document.write(args);
}

function openPopupWindow(page,w,h) {

	var y=screen.height;
	var x=screen.width;
	var width=w;
	var height=h;
	y=Math.round((y/2)-(height/2));
	x=Math.round((x/2)-(width/2));

    strto="";
   var ptitle = "NEWS";
   var wind=window.open(page + strto, ptitle,
			"Width=" +
				width +
			",Height=" +
				height +
			",left=" +
				x +
			",top=" +
				y +
			"location=no,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=auto");
		wind.focus();
}
