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