﻿// JScript File
function getClassAttributeNameForNavigator() {
    //  fix for IE, the <class> attribute is called <className>
    if (navigator.userAgent.indexOf("MSIE") != -1)
        return "className";
    else
        return "class";
}

    function showDiv( id ) {
	//  hide list text
	document.getElementById( "td_tablist_4money_tab_adv_div" ).style.display = "none";
	document.getElementById( "td_tablist_4money_tab_pub_div" ).style.display = "none";
	
	//  show list text
	document.getElementById( "td_tablist_4money_tab_" + id + "_div" ).style.display = "block";
}


function setTextFocus( id ) {
	var cls = getClassAttributeNameForNavigator();		

	//  unhighlite tabs text
	document.getElementById( "td_tablist_4money_href_adv" ).setAttribute( cls, "unhighlited"  );
	document.getElementById( "td_tablist_4money_href_pub" ).setAttribute( cls, "unhighlited"  );
	
	//  highlite tab text, use default style
document.getElementById( "td_tablist_4money_href_" + id ).setAttribute( cls, ""  );
}


function changeTab( id ) {
	//  change tab background
	if( id == "pub" ) {
		document.getElementById( "tablist_href_div1" ).style.background = "url(\"images/tab1_03st.png\")";
		document.getElementById( "tablist_href_div2" ).style.background = "url(\"images/tab1_04dr.png\")";
	   
	}
	else  {
		document.getElementById( "tablist_href_div1" ).style.background = "url(\"images/tab2_03st.png\")";
		document.getElementById( "tablist_href_div2" ).style.background = "url(\"images/tab2_04dr.png\")";	 
	}	

	//setTextFocus( id );
	showDiv( id );
}
