function popupSized(location,windowname,width,height) {
	var ThisWin = window.open(location,windowname,'width='+width+',height='+height+',scrollbars=yes');
	if(ThisWin.focus) ThisWin.focus();
}