if (top.location != location) 
	top.location.href = document.location.href;
				
function playVideo()
{
	var params = { allowScriptAccess: "always", allowFullScreen: "always" };
	var atts = { id: "ytPlayer" };
	swfobject.embedSWF("http://www.youtube.com/v/" + videoID + "&enablejsapi=1&playerapiid=player1&showinfo=0&caption=false&rel=0&fs=1&version=3", "videoDiv", "748", "425", "8", null, null, params, atts);
}

function ShowSelector()
{
	var visibility = document.getElementById('selectsection').style.display;
	document.getElementById('selectsection').style.display = (visibility == 'none')?'block':'none';
}

function SetSearchSection(section)
{
	var sections = new Array();
	sections[1] = 'Software';
	sections[2] = 'Drivers';
	sections[3] = 'Mobile Phones';
	sections[4] = 'Games';
	sections[5] = 'iPhone';
	sections[6] = 'Android';
	
	if(sections[section] !== undefined ) 
	{
		document.getElementById('selectedsection').innerHTML= sections[section];
		document.getElementById('stype').value = section;
	}
	HideSelector();
}

function HideSelector()
{
	document.getElementById('selectsection').style.display = 'none';
}

