browserVersion = parseInt(navigator.appVersion);
if (browserVersion >= 3) version = 3; else version = 2;

if (version == 3)
{
	icompany_off = new Image(33,222);
	icompany_off.src = 'images/icompany_off.gif';
	icompany_on = new Image(33,222);
	icompany_on.src = 'images/icompany_on.gif';

	iproducts_off = new Image(33,222);
	iproducts_off.src = 'images/iproducts_off.gif';
	iproducts_on = new Image(33,222);
	iproducts_on.src = 'images/iproducts_on.gif';

	iuses_off = new Image(33,222);
	iuses_off.src = 'images/iuses_off.gif';
	iuses_on = new Image(33,222);
	iuses_on.src = 'images/iuses_on.gif';

	idifference_off = new Image(33,222);
	idifference_off.src = 'images/idifference_off.gif';
	idifference_on = new Image(33,222);
	idifference_on.src = 'images/idifference_on.gif';

	iopportunity_off = new Image(33,222);
	iopportunity_off.src = 'images/iopportunity_off.gif';
	iopportunity_on = new Image(33,222);
	iopportunity_on.src = 'images/iopportunity_on.gif';

	icontact_off = new Image(33,222);
	icontact_off.src = 'images/icontact_off.gif';
	icontact_on = new Image(33,222);
	icontact_on.src = 'images/icontact_on.gif';
}

function turnOn(imgName, obj)
{
  if (version == 3) document[imgName].src = obj;
  self.status = "";
}

function turnOff(imgName, obj)
{
  if (version == 3) document[imgName].src = obj;
  self.status = "";
}


