function removeDot(str)
{
	var ret = new String("");
 	var ch;

 	for (var i = 0; i < str.length; i++)
 	{
 	ch = str.charAt(i);
	if (ch == ".")
		ret += "X";
	else
		ret += ch;
	}
	 return ret;
}
function LoadPrint(companyId, groupName, pageId)
{
	var name = removeDot (Math.random().toString());
	var url = "http://www.liccardo.com/printthis/printthis.php?COMPANYID=" + companyId + "&GROUPNAME=" + groupName + "&url=" +escape(location.href) + "&title=" + escape(document.title);
	window.open(url, name, 'height=580,width=530,toolbar=0,menubar=no,directories=no,resizable=1,scrollbars=1,status=0');
	return;
}
function setIcon(companyId, groupName, pageId)
{
	document.write('<br>');
	document.write('<table border="0" cellspacing="0" cellpadding="0"');
	document.write('<tr><td align="middle" valign="top">');
	var lnk = "<a name='PrintLink' HREF='#' onClick='javascript:LoadPrint(\"" + companyId + "\", \"" + groupName + "\", \"" + pageId + "\");' target='_self'>";
	document.write (lnk);
	document.write('<img name="PrintIcon" src="http://www.liccardo.com/printthis/printthisicon.gif" alt="Print This!" border="0"></a></td></tr>');
	document.write('</table>');
}