function popitup(url,name) {
	w=650;
	h=650;
	sw = screen.availWidth - w-50;
	win = window.open(url,name,'width='+w+',height='+h+',top=10,left='+sw+',scrollbars=1,resizable=1');
	if (window.focus) {win.focus()}
	
}