// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/srgg-solutions/";

function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sContent = document.getElementById('printable').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>SRGG Solutions Inc.</title><link href="'+link_path+'common/srgg-solutions.css" type="text/css" rel="stylesheet"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print-send.css\"></head>');
	   winprint.document.write('<body><img src="'+link_path+'images/wrapper/logo.gif" border="0" height="129" width="212" alt="SRGG Solutions Inc.">');
	   winprint.document.write(sContent);
	   winprint.document.write('<hr size="1"><div align="right">Copyright © - SRGG Solutions Inc.&nbsp; &nbsp;<a href="'+link_path+'privacy.html">Privacy Policy</a></div>');
	   winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}