function win_open(win_name, where, type_val) {
	var win_type = new Array();
	var W = new Array();
	var H = new Array();

	win_type[0]="width=640,height=480,left=100,top=100,RESIZABLE,TOOLBAR,LOCATION,DIRECTORIES,TITLEBAR,STATUS,SCROLLBARS";	W[0]="100";	H[0]="100";
	win_type[1]="width=640,height=480,left=100,top=100,RESIZABLE,LOCATION,DIRECTORIES,TITLEBAR,STATUS,SCROLLBARS";	W[1]="100";	H[1]="100";
	win_type[2]="width=640,height=480,left=100,top=100,RESIZABLE,TOOLBAR,DIRECTORIES,TITLEBAR,STATUS,SCROLLBARS";	W[2]="100";	H[2]="100";
	win_type[3]="width=640,height=480,left=100,top=100,DIRECTORIES,TITLEBAR,STATUS,SCROLLBARS";	W[3]="100";	H[3]="100";
	win_type[4]="width=640,height=480,left=100,top=100,RESIZABLE,SCROLLBARS";	W[4]="100";	H[4]="100";

	win_name = window.open(where, win_name, win_type[type_val]);
	win_name.focus();
}

function delete_verify(win_name, where, type_val, what) {
	answer = confirm("Are you sure you wish to delete the item: '" + what + "' from the database?");

	if (answer) { win_open(win_name, where, type_val) }
} 