    <!--
      function openPrintPage (vars) {
        var winOpt = "height=842, width=680, top=10, left=180, scrollbars=yes, status=yes, menubar=yes, titlebar=no";
        var param = window.location.search;
        var url;
        
        if(vars == "" || openPrintPage.arguments.length == 0) {
	        if (parent['masterFrame'] != null) {
	          if(param == "") {
	            url = parent['masterFrame'].location.href+"?client_request_printlayout=true";
		        }else{
		          url = parent['masterFrame'].location.href + "&client_request_printlayout=true";
	            window.open(url, target="_blank", winOpt);
	          }
		      }
		      else {
		        if(param == "") {
		          url = location.href+"?client_request_printlayout=true";
		        }else{
		          url = location.href + "&client_request_printlayout=true";
	          }		        
		      }
		    } else {
				if(param == "") {
		         url = location.href + "?client_request_printlayout=true&"+vars;
		        }else{
		          url = location.href + "&client_request_printlayout=true&"+vars;
				}		        
		    	
		    }
	      //var win_print = 
	      window.open(url, "print", winOpt);
	      //win_print.print();
      }
    -->