function popup(url)
{
	var path=url;
	newwindow=window.open(path,'popup',"height=500,width=600,status=no,scrollbars=yes,toolbar=no,menubar=no,location=no");
	if (window.focus) newwindow.focus();
	return false;
}
