// JavaScript Document

var newwindow;
function makenewwindow(url)
{newwindow=window.open(url,'name','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}