var newwindow;

function popup(url)
{
	newwindow=window.open(url,'name','height=210,width=435');
	if (window.focus) {newwindow.focus()}
}
