// JavaScript Document
<!--
var IE4 = (document.all) ? true : false;
var NS4 = (document.layers) ? true : false;

function setZposition(id, z) {
  if (NS4) {eval("document." + id).zIndex = z}
  else {eval("document.all." + id).style.zIndex = z}
}
function swapToService() {
    var table = document.getElementById("service");
	setZposition('MYSUPPORT', 3);
	table.style.background='url(/images/product-tab-over.jpg)';
		table.style.color='#FFFFFF';
	table.style.border='solid #FFFFFF 1';

	var table = document.getElementById("support");
	setZposition('MYMEDIA', 2);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.border='solid #FFFFFF 1';

	var table = document.getElementById("product");
	setZposition('MAINDETAILS', 1);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.border='solid #FFFFFF 1';
}
function swapToDownload() {
    var table = document.getElementById("support");
	setZposition('MYMEDIA', 3);
	table.style.background='url(/images/product-tab-over.jpg)';
		table.style.color='#FFFFFF';
	table.style.borderColor='#FFFFFF';

	var table = document.getElementById("service");
	setZposition('MYSUPPORT', 2);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.borderColor='#FFFFFF';

	var table = document.getElementById("product");
	setZposition('MAINDETAILS', 1);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.borderColor='#FFFFFF';

}
function swapToProduct() {
    var table = document.getElementById("product");
	setZposition('MAINDETAILS', 2);
	table.style.background='url(/images/product-tab-over.jpg)';
	table.style.color='#FFFFFF';
	table.style.borderColor='#FFFFFF';

	var table = document.getElementById("support");
	setZposition('MYMEDIA', 3);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.borderColor='#FFFFFF';

	var table = document.getElementById("service");
	setZposition('MYSUPPORT', 1);
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.borderColor='#FFFFFF';

}
    var table = document.getElementById("product");
	table.style.background='url(/images/product-tab-over.jpg)';
		table.style.color='#FFFFFF';
	table.style.border='solid #FFFFFF 1';

	var table = document.getElementById("support");
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.border='solid #FFFFFF 1';

	var table = document.getElementById("service");
	table.style.background='url(/images/product-tab-reg.jpg)';
		table.style.color='#000000';
	table.style.border='solid #FFFFFF 1';
//-->
