// JavaScript Document

function open_win(what,where){
	if(where=="" || where==null){
		where="height=400,width=450,scrollbars=yes";
	}
	wins=window.open(what,'wins',where);
	wins.focus();
}
