var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','scrollbars=yes,height=500,width=600');
	if (window.focus) {newwindow.focus()}
}