function openwindow (file, width, height) {
	var windowfeats = 'resize,scrollbars=auto,width='+width+',height='+height;
	var mypopup = window.open(file, 'newwindow', windowfeats);
	mypopup.focus();
}
