function popup(url,name,width,height)
{
	var newWindow;
	
	newWindow = this.open(url,
	          this.name+"_"+name,
	          "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height="+height+",width="+width);
	newWindow.focus();
}