function d_open()
{
	document.getElementById('d_popup').style.display = '';
	document.getElementById('location').innerHTML = '<span class="myLink" onclick="fixURL(\'#index\')">INDEX</span> | DOWNLOADS';
	document.title = 'redstarcommunity.com | downloads';
	include('d_main','src/downloads.php');
}

function d_close()
{
	document.getElementById('d_popup').style.display = 'none';
	document.getElementById('d_main').innerHTML = '';
}

function d_cv(lyr)
{
	if (document.getElementById(lyr).style.display == '')
	{
		document.getElementById(lyr).style.display = 'none';
		document.getElementById('di' + lyr).style.display = 'none';
		document.getElementById('i' + lyr).src = 'images/downloads/plus.png';
	}
	else
	{
		document.getElementById(lyr).style.display = '';
		document.getElementById('di' + lyr).style.display = '';
		document.getElementById('i' + lyr).src = 'images/downloads/minus.png';
	}
}


function d_get(down)
{
	this.location.href = 'src/download.php?id=' + down;
}

