/************************************************************/
/*****													*****/
/*****	Windsoft										*****/
/*****													*****/
/*****	Filename: 		Wsetdiv.js		  				*****/
/*****													*****/
/*****	Designer(s):	J.M. Wind (Windsoft)			*****/
/*****													*****/
/*****	Source: 		1.0								*****/
/*****													*****/
/*****	Copyright 2007 Windsoft. All rights reserved.	*****/
/*****													*****/
/************************************************************/
/*****	>------------------ History -----------------<	*****/
/*****	Date		Name	Source	Description			*****/
/*****	----------	-------	-------	-------------------	*****/
/*****	08-09-2008	JMW		1.0		Begin history		*****/
/************************************************************/
/*****	Triple Functies JS								*****/
/************************************************************/
	changeParent = function(Ob,Ob2) {
			document.getElementById(Ob2).style.color = "#ffffff";
			document.getElementById(Ob).style.backgroundImage = "url(/triplepro/img/tab_active.png)";
			document.getElementById(Ob).style.backgroundRepeat = "repeat-x";

			if(navigator.appName == "Microsoft Internet Explorer"){
				document.getElementById(Ob).className+= " ie_does_hover";
			}
		}
		
		setBack = function(Ob,Ob2){
			document.getElementById(Ob2).style.color = "#0079aa";
			document.getElementById(Ob).style.backgroundImage = "url(/triplepro/img/tab_inactive.png)";
			document.getElementById(Ob).style.backgroundRepeat = "repeat-x";

			if(navigator.appName == "Microsoft Internet Explorer"){
				document.getElementById(Ob).className = document.getElementById(Ob).className.replace(new RegExp(" ie_does_hover\\b"), "");
			}
		}
		
		setBack2 = function(Ob){
			if(navigator.appName == "Microsoft Internet Explorer"){
				document.getElementById(Ob).className = document.getElementById(Ob).className.replace(new RegExp(" ie_does_hover\\b"), "");
			}
		}