function DownloadFile(FileName)
{
	//window.location = 'downloads/' + FileName;
	var DLWin = window.open ('','DLWin','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
	DLWin.document.write ("<HTML><HEAD><TITLE>" + FileName + "</TITLE></HEAD>");
	DLWin.document.write ("<FRAMESET rows=\"25,*\">");
	DLWin.document.write ("<FRAME name=\"PrintLink\" src=\"resources/PrintDocument.html\" scrolling=\"no\" frameborder=\"0\" noresize=\"noresize\">");
	DLWin.document.write ("<FRAME name=\"ThisDocument\" src=\"downloads/" + FileName + "\" frameborder=\"0\" noresize=\"noresize\">");
	DLWin.document.write ("</FRAMESET></HTML>");
	//DLWin.document.title = FileName;
}

function PrintDocument(FrameName)
{
	parent[FrameName].focus();
	parent[FrameName].print();
}
