function popwin(file,x,y) {
	popx = x + 5;
	popy = y + 5;
	popup = window.open(file,popx+"_"+popy,"status=no,scrollbar=0,toolbar=no,location=no,menu=no,width="+popx+",height="+popy);
	popup.focus();
}