// JavaScript Document

function del(php, id, type, msg)
{
	if (confirm(msg))
		location.replace(php+"?action=del&id="+id+"&type="+type);
}


function openDir(form)
{
	var newIndex = form.fieldname.selectedIndex;
	cururl = form.fieldname.options[ newIndex ].value;
	window.location.assign( cururl );
}


