function newswin(name)
{
	var height = screen.availheight - 100;
	var width  = 800;

	newWin = window.open(name, "CSNEWS",
				"toolbar=1,status=1,location=0,menubar=1,directories=0,scrollbars=1,resizable=1," +
				"screenX=0,screenY=0,left=0,top=0,hotkeys=0,width=" + width + ",height=" + height);
}

function archwin()
{
	var height = screen.availheight - 100;
	var width  = 800;

	newWin = window.open("news/previous.htm", "CSNEWS",
				"toolbar=1,status=1,location=0,menubar=1,directories=0,scrollbars=1,resizable=1," +
				"screenX=0,screenY=0,left=0,top=0,hotkeys=0,width=" + width + ",height=" + height);
}

function closewin()
{
	window.close();
}