// JavaScript Document
function openDir (which) {
	window.open("directory.php?which="+which,"directory","scrollbars=yes,width=250,height=350");
}

function warn () {
	var agree=confirm('WARNING: Deleting is permanent!\nSelect OK to continue or Cancel to prevent deletion.');
	if (agree) return true;
	else return false;
}