var isIE = false;
var isOther = false;
var isNS4 = false;
var isNS6 = false;
if(document.getElementById)
{
	if(!document.all)
	{
		isNS6=true;
	}
	if(document.all)
	{
		isIE=true;
	}
}
else
{
	if(document.layers)
	{
		isNS4=true;
	}
	else
	{
		isOther=true;
	}
}

function aLs(layerID)
{
var returnLayer;
	if(isIE)
	{
		returnLayer = eval("document.all." + layerID + ".style");
	}
	if(isNS6)
	{
		returnLayer = eval("document.getElementById('" + layerID + "').style");
	}
	if(isNS4)
	{
		returnLayer = eval("document." + layerID);
	}
	if(isOther)
	{
		returnLayer = "null";
		alert("-[Error]-\nDue to your browser you will probably not\nbe able to view all of the following page\nas it was designed to be viewed. We regret\nthis error sincerely.");
	}
return returnLayer;
}

function toggle(ID)
{
	if(aLs(ID).display == "inline")
	{
		aLs(ID).display = "none";
	}
	else if(aLs(ID).display == "none")
	{
		aLs(ID).display = "inline";
	}
}

function hide(ID)
{
		aLs(ID).display = "none";
}

function show(ID)
{
		aLs(ID).display = "inline";

}

function hideall()
{
		aLs('latest').display = "none";
		aLs('Agere').display = "none";
		aLs('Aliantiz').display = "none";
		aLs('Arima').display = "none";
		aLs('ARM').display = "none";
		aLs('ASC').display = "none";
		aLs('Ascom').display = "none";
		aLs('Atmel').display = "none";
		aLs('CML').display = "none";
		aLs('Compal').display = "none";
		aLs('Core').display = "none";
		aLs('Deltathree').display = "none";
		aLs('DSPG').display = "none";
		aLs('Ericsson').display = "none";
		aLs('HTC').display = "none";
		aLs('Huawei').display = "none";
		aLs('Importek').display = "none";
		aLs('Interwise').display = "none";
		aLs('KT').display = "none";
		aLs('Macromedia').display = "none";
		aLs('Mediaring').display = "none";
		aLs('Memotec').display = "none";
		aLs('NCHC').display = "none";
		aLs('Nortel').display = "none";
		aLs('Oracle').display = "none";
		aLs('Paltalk').display = "none";
		aLs('Philips').display = "none";
		aLs('Quanta').display = "none";
		aLs('Quescom').display = "none";
		aLs('iRiver').display = "none";
		aLs('RMI').display = "none";
		aLs('RS').display = "none";
		aLs('Rohill').display = "none";
		aLs('Siemens').display = "none";
		aLs('SigmaTel').display = "none";
		aLs('STROM').display = "none";
		aLs('Systech').display = "none";
		aLs('Tadiran').display = "none";
		aLs('Tensilica').display = "none";
		aLs('Thomson').display = "none";
		aLs('TI').display = "none";
		aLs('Toshiba').display = "none";
		aLs('Veraz').display = "none";
		aLs('VTEL').display = "none";
		aLs('YesVideo').display = "none";
		aLs('ZTE').display = "none";
		aLs('Adobe').display = "none";
		aLs('BT').display = "none";
		aLs('Multidata').display = "none";
		aLs('Polycom').display = "none";
		aLs('Radvision').display = "none";
		aLs('VMTS').display = "none";
}

