function getRandomFAQ()
{
	var r = Math.round(Math.random()*7) + 1;
	
	var html;

	switch(r)
	{
	case 1:
		html = "<b><a href='http://www.pozirk.com/faq#1' class=link>What is DirectX and why should I care?</a></b>";
		break;
		
	case 2:
		html = "<b><a href='http://www.pozirk.com/faq#2' class=link>How do I know what DirectX version installed on my computer?</a></b>";
		break;
		
	case 3:
		html = "<b><a href='http://www.pozirk.com/faq#3' class=link>How do I install DirectX on my computer?</a></b>";
		break;
		
	case 4:
		html = "<b><a href='http://www.pozirk.com/faq#4' class=link>What is OpenGL?</a></b>";
		break;
		
	case 5:
		html = "<b><a href='http://www.pozirk.com/faq#5' class=link>What is Shareware?</a></b>";
		break;
		
	case 6:
		html = "<b><a href='http://www.pozirk.com/faq#6' class=link>What’s the difference between Demo and Full (registered) Version?</a></b>";
		break;
		
	case 7:
		html = "<b><a href='http://www.pozirk.com/faq#7' class=link>Where can I find more games?</a></b>";
		break;
		
	case 8:
		html = "<b><a href='http://www.pozirk.com/faq#8' class=link>Where can I get Flash Plugin, Shockwave Plugin and Java Plugin for Online Games?</a></b>";
		break;
		
	case 9:
		html = "<b><a href='http://www.pozirk.com/faq#9' class=link>What is RSS?</a></b>";
		break;
	}
	
	return html;
}