var newwindow;

function popup(url)
{
newwindow=window.open(url,'name','height=450 width=660 left=100 top=100 resizable=yes')

if (window.focus)
	{
	newwindow.focus()
	}
} 

