function OpenPopup(url,x,y)
{
	state = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + x + ',height=' + y;
	popupinfo = window.open(url, 'popupinfo', state);
	popupinfo.focus();
	
	return false;
}

function OpenFirmware(url,x,y)
{
	state = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + x + ',height=' + y;
	popupinfo = window.open(url, 'popupinfo', state);
	popupinfo.focus();

	return false;
}
					
function OpenStrat(url,x,y)
{
	state = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + x + ',height=' + y;
	popupinfo = window.open(url, 'popupinfo', state);
	popupinfo.focus();

	return false;
}
					
function ClosePopup()
{
	this.close();
}

function Download(url)
{
	state = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600,height=620';
	download = window.open(url, 'download', state);
	download.focus();
	
	return false;
}

function DownloadRight()
{
	alert('Please do not use the secondary mouse button here.\nThis link will not give you a direct file download but the disclaimer');

	return false;
}
