// JavaScript Document
function CC_ManipulateTabs(intbodyID){
	try{
		var oTblOne 		= document.getElementById('tableOne');
		var oTblTwo			= document.getElementById('tableTwo');
		var oAnchorProduct 	= document.getElementById('anchorProduct');
		var oAnchorBusiness	= document.getElementById('anchorBusiness');
		switch (intbodyID){
			case "2":
				if (navigator.appName == 'Microsoft Internet Explorer'){ 
					/* IE doesn't recognise "setAttribute" method  Commented by Chia Chong on 20th May 2008*/
					oTblOne.className = 'tabL';
					oTblTwo.className = 'tabR';
				}
				else{	
					oTblOne.setAttribute("class","tabL");
					oTblTwo.setAttribute("class","tabR");
				}
				oTblOne.style.width = '172px';
				oTblTwo.style.width = '160px';
				oAnchorProduct.style.color = '#006699';
				oAnchorBusiness.style.color = '#AFDBF5';
				//oAnchorProduct.href = '#';
				break;
			case "3":
				if (navigator.appName == 'Microsoft Internet Explorer'){ 
					/* IE doesn't recognise "setAttribute" method  Commented by Chia Chong on 20th May 2008*/
					oTblOne.className = 'tabL';
					oTblTwo.className = 'tabR';
				}
				else{	
					oTblOne.setAttribute("class","tabL");
					oTblTwo.setAttribute("class","tabR");
				}
				oTblOne.style.width = '160px';
				oTblTwo.style.width = '172px';
				oAnchorProduct.style.color = '#AFDBF5';
				oAnchorBusiness.style.color = '#006699';
				//oAnchorBusiness.href = '#';
				break;
		}
	}
	catch(err){
		
	}
	
}
	
	
	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}
