	function doHomePageTest() {
		if (location.href.indexOf("/navigation/home/index.do")>0 ) { 
   			return true;
		}
		else if (location.href.indexOf("/navigation/entersite.do") >0) {
   			return true;		
		}
		else {
   			return false;
 		}
	}
	
	function doOldPageTest() {
	    if (location.href.indexOf("rf.inf.RFServlet")>0) {
	        return true;
	     }
	    else {
	        return false;
	    }
	}
	
	if (doOldPageTest()) {
        document.write('<style type="text/css">body { background: #fff; margin: 5px 0px 5px 0px;}');   
        if (doAccManPageTest()){
             document.write('#zonenavcontainer {width: 100%; border-top:1px solid white; background-color: #997ECC;}');
        }
        document.write('</style>');
    }
    
	function doHidePageTest() {
	    if (location.href.indexOf("/navigation/home/index.do")>0 || location.href.indexOf("/navigation/entersite.do") >0 || location.href.indexOf("thumb")>0 || location.href.indexOf("/navigation/main.do")>0) { 
   			return true;
		}
		else {
   			return false;
 		}
	}

   function doAccManPageTest(){
      if (location.href.indexOf("pathinfo=accman")>0) {
	        return true;
	     }
	    else {
	        return false;
	    }
   }