function Enlarge_window(theURL,winName,width,height,features) {
	MyWindow=window.open(theURL,winName,'resizable=yes,scrollbars=auto,width='+width+',height='+height+features);
	MyWindow.resizeTo(width,height);
	setTimeout('MyWindow.focus();',250);
}
