//	Gerneral download call
function getFile(id)
{
	frames['downloadiframe'].location.href = 'download_file.asp?id=' + id;
}

//	Get game
function getGame(id)
{
	frames['downloadiframe'].location.href = 'download_game.asp?id=' + id;
}

//	Used by PressDownloads Class b/c id is shared between PDF, Word, and Image	
function getPDF(id)
{
	frames['downloadiframe'].location.href = 'download_pdf.asp?id=' + id;
}
	
//	Used by PressDownloads Class b/c id is shared between PDF, Word, and Image	
function getWord(id)
{
	frames['downloadiframe'].location.href = 'download_word.asp?id=' + id;
}

//	Used by PressDownloads Class b/c id is shared between PDF, Word, and Image	
function getImage(id)
{
	frames['downloadiframe'].location.href = 'download_image.asp?id=' + id;
}