
            function montre(id) {
            var d = document.getElementById(id);
	            for (var i = 1; i<=10; i++) {
		            if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	            }
            if (d) {d.style.display='block';}
            }
            
            function debugOutput()
            {
                document.getElementById("debug").innerhtml="hello debug";
                alert(document.getElementById("maintable").offsetHeight + "px");
            }
             //--------------------------
              //print page content            
		    function printSite(){
			    
			    var myLink = new String(window.location);
			    var linkParts = myLink.split("?");
			    //var queryParts = linkParts[1].split("&");
			    //alert(linkParts[1]);
			    //window.open('/webtop/site.asp?p=35&t=print');
			    window.open('/cms/site.asp?' + linkParts[1] + '&t=print&searchstring=');
		    }	
  