//FAQs Script
//q contains questions
//a contains answers
//
//Make sure the number in the square brackets is incremented
//with each new question and answer.
//Make sure that the number of the question corresponds to
//the number of the answer.
//
//The number in square brackets must run sequentially: i.e.
//if q[3] is removed, all items following must be decremented
//by 1, so q[4] becomes q[3] and so on.

var q = new Array();
var a = new Array();

//q[1] = 'How can I quickly navigate through this long list of FAQ\'s?';
//a[1] = 'If you hold down "Ctrl" and "F" you will get text search window up on your screen. Please enter the key words for your question. You may have to try a selection of different words find the best FAQ for your query.';
q[1] = 'If I put faster DDR2 in the HyperDrive5, will it go faster?';
a[1] = 'No. It makes no difference. We underclock the DDR2 enormously. DDR2 clocked at 800MHz is PC6400. That means it can read and write at 6400 MB per second. But the SATA2 bus is only ATA250. So it can only read and write at 250 MB per second. So normally clocked DDR2 memory is over 20x faster than the bus!! We underclock it to save power and increase stability.';
q[2] = 'Why does the HyperDrive5 have two SATA ports?';
a[2] = 'So that you can split one 8 DIMM slot device into two 4 DIMM slot deivces and run them both in RAID0 using a RAID controller for even faster performance.';
q[3] = 'Do your read rate and write rate figures apply to one SATA port operation or to 2 SATA port RAID0 operation?';
a[3] = 'They apply to one SATA port operation. If you connect the HyperDrive5 as a normal one SATA port drive, it will read sequential data at 175-190MB per second and write sequential data at 145-160 MB per second (Dependent upon your MOBO SATA controller). This is over twice as fast as the best Hard Disks in the world as of January 2009.';
q[4] = 'How much faster will a HyperDrive run my Photoshop rendering than my Hard disk does it?';
a[4] = 'Simply put, the speed that you render at when everything is happening in system RAM is the speed you will render at when everything is happening on the HyperDrive. Typically it is around 400-500% faster than one fast Hard Disk with Photoshop rendering and video converting etc.';
q[5] = 'Can I run a HyperDrive5 eternally from my laptop/notebook/portable PC?';
a[5] = 'Yes, so long as your laptop has an eSATA port, or an express card port in which you can place an express card to eSATA converter. You will also need an eSATA to SATA cable. You do not need a powered external drive case. The HyperDrive5 has a DC adapter which powers it externally. Using this adapter makes the drive into an external drive.';
q[6] = 'Will I lose all the data on the HyperDrive if I restart the PC?';
a[6] = 'No. Restarting the PC does not cut power to the HyperDrive.';
q[7] = 'Will I lose all the data if I turn the power to my PC off?';
a[7] = 'If you have a DC adapter then the HyperDrive will remain powered so you will not lose your data. If you do not connect the DC adapter, then the onboard battery will power the unit for around 2 hours, then you will lose your data.';
q[8] = 'How do I make the HyperDrive5 completely non volatile, even in a power outage?';
a[8] = 'Put a compact flash card in the slot in the front of the device. Make sure the capacity of that card is as big as the installed DDR2. If the capacity is too small the CF LED will go red. If the capacity is sufficient it will go green. If main power to the HyperDrive is lost for any reason it will automatically back itself up to the CF card preserving your data. When main power is restored it will automatically restore that data from the CF card back to the Drive.';
q[9] = 'Do DDR SSDs wear out like NAND flash SSDs?';
a[9] = 'No.';




//##########################################
//    FUNCTIONS BELOW
//    Do not alter and code below this line.
//##########################################
function writeQs()
{
	if (loaded)
	{
		var str
		str="";
		if (q.length > 0)
		{
			str = "<ol>"
			for (i=1;i<q.length;i++)
			{
				//str = str + '<a href="faqshd5.htm#' + i + '" class=faq>' + i + '. ' + q[i] + '</a><br>'
				str = str + '<li><a href="faqshd5.htm#' + i + '" class=faq>' + q[i] + '</a></li>'
			}
			str = str + "</ol>"
		}
		else
		{
			str = "There are currently no FAQs available."
		}
		return str;
	}
}

function writeQandAs()
{
	if (loaded)
	{
		var str
		str="";
		if (q.length > 0)
		{
			for (i=1;i<q.length;i++)
			{
				str = str + '<tr>' +
				'<TD VALIGN="top" class=smallcopy width="50%"><a name="' + i + '"></a><b>Q</b> ' + q[i] + '<br><a href="faqshd5.htm#top" class=faq>top</a></td>' +
				'<TD VALIGN="top" class=smallcopy width="50%"><b>A</b> ' + a[i] + '</td>' +
				'</tr>'
			}
		}
		return str;
	}
}