function printFriendly(sDiv) 
{ 
if (document.getElementById!= null) 
{ 
var html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<style type="text/css">\n#menu_outer {display:none;}\n.type_change{display:none;}\n.pageOptions{display:none;}</style>\n'; 

if (document.getElementsByTagName!= null) 
{ 
var headtags = document.getElementsByTagName("head"); 
if (headtags.length > 0) 
html += headtags[0].innerHTML; 
} 

html += '\n</he' + 'ad>\n<body style="background-color:#ffffff;" onload="window.print();">\n<div style=\"padding-left:10px; padding-top:10px;\"><div style=\"position: absolute; right: 5px; width: 36px; height: 50px; padding:bottom:5px;\"><img src=\"../images/layout/logo_small.gif\" /></div>'; 

var printPageElem = document.getElementById(sDiv); 

if (printPageElem!= null) 
{ 
html += printPageElem.innerHTML; 
} 
else 
{ 
alert("Sorry, the content could not be retrieved for your PrintFriendly page"); 
return; 
} 

html += '<div style=\"float:bottom left;padding-bottom:10px;\"><table cellpadding="0" cellspacing="0" style=\"width:100%;\"><tr><td style=\"width:26px;\"><a href=\"#\" onclick=\"javascript:window.print(); return false\" title=\"Print\"><img src=\"../images/fonts/print.jpg\" alt=\"Print\" border=\"0\"></a></td><td>&nbsp;<a href=\"#\" onclick=\"javascript:window.print(); return false\" title=\"Print\">Print Now!</a></td><td align=\"right\">&nbsp;&copy; 2008 ACT - IT Services &amp; Consultancy</td></tr></table></div>';

html += '\n</div>\n</bo' + 'dy>\n</ht' + 'ml>'; 

var printWin = window.open("",sDiv,'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); 
printWin.document.open(); 
printWin.document.write(html); 
printWin.document.close(); 

} 
}