//---------------------------------------------
// file_dl (JavaScript)
//---------------------------------------------
// INPUT: 	Relative path to download.
//
// OUTPUT:	N/A
//
// NOTES:	Opens dl.php passing the RelPath 
//			parameter on to it.
//---------------------------------------------
function file_dl(RelPath) 
{
	window.open("dl.php?file=" + RelPath,"","height=300,width=400,scrollbars=no,resizable=no");
	return;
}

function download(FullPath) 
{
	self.location = FullPath;
}