function confirmDelete(loc){
	var where_to = confirm("Delete files and database records?");
 		if (where_to == true){
   			window.location=loc;
 		}
 		else{
  	}
}

function jumpMenu(targ,selObj,restore){ 
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function jumpaway(){
	var url = document.f_insp.s_insp.options[document.f_insp.s_insp.options.selectedIndex].value;
	if(url != "")
		window.open(url,'s_insp','directories=no,location=yes,menubar=yes,resizeable=yes,scrollbars=yes,status=yes,toolbar=yes');
	document.f_insp.s_insp.options[0].selected = true;
}

function browserWindow(theURL,winName,features){
  window.open(theURL,winName,features);
}
