﻿function fnSaveCurrentTheme(whTheme){
    document.cookie = "curTheme=" + whTheme + ";expires=Mon, 18-Feb-2036 05:43:38 GMT;path=/;";
}

function fnGetCurrentTheme(){
    var tmpCookie;
   
    tmpCookie = document.cookie.split("; ");
    
    var tmpCounter = 0;
    var targetTheme = null;
    while(tmpCookie[tmpCounter] != null){
		var tmpTheme = tmpCookie[tmpCounter].split("=");
        if(tmpTheme[0] == "curTheme"){
            targetTheme = tmpTheme[1];
        }
        tmpCounter++;
    }
    if(targetTheme != null){
        return(targetTheme);
    } else {
        return("Purple");
    }
}

function fnSetTheme(whTheme){
	//alert(whTheme);
    document.getElementById('stylesheet').href = "/HTML/Includes/JSHTM_net_" + whTheme + ".css";
}