// JavaScript Document

function newWindow(url, height, width) {
	var nameW='x';
	var myWin = "";
	var xTop = (screen.width) ? (screen.width-width)/2 : 0;
	var yTop = (screen.height) ? (screen.height-height)/2 : 0;		
	var myWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
 myWin.focus();
}

function news(url, height, width) {
	var nameW='x';
	var myWin = "";
	var xTop = (screen.width) ? (screen.width-width)/2 : 0;
	var yTop = (screen.height) ? (screen.height-height)/2 : 0;		
	var myWin = window.open(url, nameW, 'height='+height+',width='+width+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=1,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
 myWin.focus();
}
