if (top == self) {location.replace("../index.htm?" + self.location)}
else{}

function Clicktoprint()
{  

  var content_vlue = document.getElementById("Print_Area").innerHTML; 
 
  var docprint=window.open("","","toolbar=1,location=0,directory=1,menubar=1,scrollbars=1,width=650, height=600, left=100, top=25"); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>WAVE Trust Printer Friendly</title>');   
   docprint.document.write('</head><body onLoad="self.print()">'); 
   docprint.document.write('<img src="../Images/Banner_red_wave.gif" width="610" height="118" border="0" align="middle" alt="" hspace="0" vspace="0"><br><br>');          
   docprint.document.write(' <div align="center" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: Black; width: 600px;">');
   docprint.document.write(content_vlue);
   docprint.document.write(' <br><font size="-3">WAVE Trust &copy; 2003-2008. Registered Charity no. 1080189.  Registered in England &amp; Wales no. 3863110<br>');
   docprint.document.write('Link to this page:&nbsp;&nbsp;');
   docprint.document.write(window.location);
   docprint.document.write('</font> </div>');
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}

