function new_window(url)
{
	newwindow=window.open(url,'name','height=250,width=500');
	if (window.focus) {newwindow.focus()}
}

