
function del_file(url,file) {
	if (confirm("Vill du fortsätta att ta bort "+file)) {
		document.location.href=url;
	}
}
function rowOver(id) {
	//alert("document.all."+id+".style.background='#EFEFEF'");
	eval("document.all."+id+".style.background='#EFEFEF'");

}
function rowOut(id) {
	//alert("document.all."+id+".style.background='#EFEFEF'");
	eval("document.all."+id+".style.background=''");

}
