var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=600,width=420,scrollbars=no,left=0,top=0');
	if (window.focus) {newwindow.focus()}
}

