var newwindow;

function PopupWindow(url)
{
	newwindow=window.open(url,'name','toolbar=yes,resizable=yes,scrollbars=yes,width=640,height=550,left=20,top=20');
	if (window.focus) {newwindow.focus()}
}

