function open_win(file,height, width) {
	win = window.open(file, "press", "toolbar=0,location=0,menubar=0,scrollbars=1,height="+height+",width="+width);	
	win.focus();
}
