// Scripts
function SetCookie (name, value) {  
        var argv = SetCookie.arguments;  
        var argc = SetCookie.arguments.length;  
        var expires = (argc > 2) ? argv[2] : null;  
        var path = (argc > 3) ? argv[3] : null;  
        var domain = (argc > 4) ? argv[4] : null;  
        var secure = (argc > 5) ? argv[5] : false;  
        document.cookie = name + "=" + escape (value) + 
        ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 
        ((path == null) ? "" : ("; path=" + path)) +  
        ((domain == null) ? "" : ("; domain=" + domain)) +    
        ((secure == true) ? "; secure" : "");
        }
		
function DisplayTableRows(theState,theElement,theLoop){

		var tmpObj1 = document.getElementById(theElement+"b");
		var tmpObj2 = document.getElementById(theElement+"a");
		var tmpObjClass1 = tmpObj1.getAttributeNode("class");
		var tmpObjClass2 = tmpObj2.getAttributeNode("class"); 
		
		if(theState) {
			tmpObjClass1.nodeValue = "HideIt";
			tmpObjClass2.nodeValue = "anriss";
			}
		else {
			tmpObjClass1.nodeValue = "ShowIt";
			tmpObjClass2.nodeValue = "HideIt";
			}

	theState = ( theState == true ? 0 : 1 );
	return theState;
	}