browserVersion = parseInt(navigator.appVersion);
if (browserVersion >= 3) version = 3; else version = 2;

if (version == 3)
{
	company_off = new Image(67,129);
	company_off.src = 'images/company_off.gif';
	company_on = new Image(67,129);
	company_on.src = 'images/company_on.gif';

	products_off = new Image(67,130);
	products_off.src = 'images/products_off.gif';
	products_on = new Image(67,130);
	products_on.src = 'images/products_on.gif';

	uses_off = new Image(67,129);
	uses_off.src = 'images/uses_off.gif';
	uses_on = new Image(67,129);
	uses_on.src = 'images/uses_on.gif';

	difference_off = new Image(67,129);
	difference_off.src = 'images/difference_off.gif';
	difference_on = new Image(67,129);
	difference_on.src = 'images/difference_on.gif';

	opportunity_off = new Image(67,129);
	opportunity_off.src = 'images/opportunity_off.gif';
	opportunity_on = new Image(67,129);
	opportunity_on.src = 'images/opportunity_on.gif';

	contact_off = new Image(67,130);
	contact_off.src = 'images/contact_off.gif';
	contact_on = new Image(67,130);
	contact_on.src = 'images/contact_on.gif';

	testi_off = new Image(26,225);
	testi_off.src = 'images/testi_off.gif';
	testi_on = new Image(26,225);
	testi_on.src = 'images/testi_on.gif';

	next_off = new Image(20,73);
	next_off.src = 'images/next_off.gif';
	next_on = new Image(620,73);
	next_on.src = 'images/next_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 = "";
}

