$(document).ready( function() {

});












function popupMissingCompName()
{
	window.open("huvudsidor/missing.php","Felanmälan","width=600,height=450"); 
}

//For the 'filarkiv' page
function prompt_name(path, old_name) { 
	new_name = prompt('Nytt namn',old_name)

	if(new_name) {
		window.location = "index.php?page=admin/filarkiv&content=show_files&rename="+path+"&new_name="+new_name
	}
}

function prompt_delete(path) { 
	if(confirm('Är du säker på att du vill radera filen '+path)) {
		window.location = "index.php?page=admin/filarkiv&content=show_files&delete="+path
	}
}
