// download.js
// $Header: z:/rcs/www/download.js,v 1.2 2007-02-14 14:48:02-05 dave Exp $



function Download (filename)
{
	name = "downloads";
	features = "width=800,height=600";
	win = window.open ("download.php?l=&DOWNLOAD=" + filename,
			name, features);
	win.focus();


	window.location = "dl/" + filename;
}




function Download_cfem (filename)
{
	name = "downloads";
	features = "width=800,height=600";
	win = window.open ("download.php?l=cfem&DOWNLOAD=" + filename,
			name, features);
	win.focus();


	window.location = "http://www.civilfem.com/download/items/" + filename;
}

