//
//  For the page calling Help
//
function ShowHelp(FileName) {
   window.open("./OR" + FileName + "Help.html", null, "location=no, titlebar=no, status=no, toolbar=no, scrollbars=yes, width = 800, height = 600");
}
//
//  For the Help page
//
	    function init(FileName) {
	        document.getElementById('Preview').src = "OR" + FileName + ".aspx";
            var ORCookie=""+document.cookie;
            var cookieName = 'ORgroupName';
            var ind=ORCookie.indexOf(cookieName);
            if (document.getElementById('Group')) {
            if (ind==-1 || cookieName=="") {
                document.getElementById('Group').innerHTML = 'Demo Group';
            } else {    
                var ind1=ORCookie.indexOf(';',ind);
                if (ind1==-1) 
                    ind1=ORCookie.length; 
                document.getElementById('Group').innerHTML = unescape(ORCookie.substring(ind+cookieName.length+1,ind1));
            }
            cookieName = 'ORuser';
            ind=ORCookie.indexOf(cookieName);
            if (ind==-1 || cookieName=="") {
                document.getElementById('User').innerHTML = 'Guest';
            } else {    
                var ind1=ORCookie.indexOf(';',ind);
                if (ind1==-1) 
                    ind1=ORCookie.length; 
                document.getElementById('User').innerHTML = unescape(ORCookie.substring(ind+cookieName.length+1,ind1));
            }
            }
        }

