function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=650, height=600, left=100, top=25"; 
  var content_vlue = document.getElementById("pagecontent").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>NC Public Power &#150; City Owned Electric Service</title><link href="App_Themes/NCPP/Menu/styles.css" type="text/css" rel="stylesheet" media="all" /></head><body onLoad="self.print()"><img src="App_Themes/NCPP/images/header/ncpp_logo.gif" alt="NC Public Power &#150; City Owned Electric Service">');         
   docprint.document.write(content_vlue);     
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}
