        function jumpto(x)
   {
   var end = x.substring(x.length-4)
	 if (end == ".pdf")
				 {
		 				window.open(x);
						x = "null"
					 }
		if (x != "null")		 
				 {
					 document.location.href = x;
					 }			 
	}
	 
		 
	 function PrintPage1()
	{
		window.print();
	}

	   function onLoadUpdateISize() {
        var iframe = document.getElementById( 'inneriframe' );
        var wrapper = document.getElementById( 'wrapper' );
        var height = Math.max( document.body.offsetHeight, document.body.scrollHeight );
        iframe.src = 'https://www.chk.com/Style%20Library/iframe/chkIFrame.html?height='+height;
      }
	  
	     function setupFrameResizing(){
        window.setTimeout("onLoadUpdateISize()",100);		
      }
	  
			function popupPDF(url){
				var ReportWindow = window.open(url, "PDFWindow", "status=yes,  menubar=yes, resizable=yes, scrollbars=yes, height=500, width=700, left=200, top=200", true);
			}


