
function new_window(url)
{
	var w;
	w=window.open(url,'name','height=600,width=400,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	if (window.focus) {w.focus()}
}
