function newwin(url) {
	var width = 800;
	var height = 420;
	var left = (screen.width-width)/2;
	var top = (screen.height*0.8-height)/2;
		
	newWin = window.open(url, "info", "width="+width+",height="+height+",scrollbars=yes,toolbar=yes,location=no,directories=no,resizable=yes,status=no,menubar=no,screenX=100,screenY=100, left="+left+", top="+top);
}