
function doOnPrint(e) {

	document.title = shortenTitle();

	print();

}



function shortenTitle() {

	var titleString;

	var result="Rational Compassionate Living";

	if(document.title) {

		titleString = "" + document.title;

		var periodIdx = titleString.indexOf('.');

		if(periodIdx > 0) {

			result = titleString.substring(0, periodIdx);

		}

		else {

			result = titleString;

		}

	}

	return result;

}



function getTitle() {

	var titleString;

	var result="Rational Compassionate Living";

	if(document.title) {

		titleString = "" + document.title;

		var periodIdx = titleString.indexOf('.');

		if(periodIdx > 0) {

			result = titleString.substring(0, periodIdx);

		}

		else {

			result = titleString;

		}

	}

	return "'" + result.replace("'","\\'") + "'";

}



function htmlEscape(s){

                  s=s.replace(/&/g,'&amp;');

                  s=s.replace(/>/g,'&gt;');

                  s=s.replace(/</g,'&lt;');

                  s=s.replace(/'/g,'\'\'');

                  return;

}

function mailHtmlPage() {

            // alert(document.documentElement.innerHTML);

            var msg = "I thought you might enjoy this website: "+location.href+ "  "

            location.href='mailto:?SUBJECT='+getTitle()+

            	'&BODY='+ msg ;

      }

document.write(
'<LINK REL="SHORTCUT ICON" HREF="http://www.smmcroberts.net/favicon.ico" />' +
'<table border="0" width="750" bgcolor="#9999FF" class="ScreenOnly"  cellspacing="0" cellpadding="3">'+

'	<tr>'+

'		<td align="left">'+

'			<a href="' + GLOBAL_homePage + '">' +

'				<img border="0" src="' + GLOBAL_logoImgSrc + '" alt="' + GLOBAL_logoImgAlt + '">'+

'			</a></td>'+

'		<td valign="bottom">'+

'			<table border="0" width="100%" cellspacing="0" cellpadding="0">'+

'				<tr valign="top">'+	

'					<td colspan="1" valign="top" align="left" class="pagetitle">'+ GLOBAL_pageTitle +'</td>'+

'      			<td align="right"><a href="javascript:mailHtmlPage();">' +

'						<img vspace="0" border="0" title="Email a link to this page to a friend" ' +

'						alt="Send a link to this page to a friend" ' +

'						src="' + GLOBAL_base + 'images/snd2frnd.jpg" /></a></td>'+

'				</tr>'+

'				<tr valign="top">'+

'					<td colspan="1" valign="top" align="left" class="bodybold">'+ GLOBAL_motto + '</td>' +  

'					<td class="body" align="right">'+

'						<a href="javascript:doOnPrint();"><img vspace="0" src="' + GLOBAL_base + 'images/print.jpg" title="Send this page to your printer" alt="Print this page" border="0" /></a></td>'+

'				</tr>'+

'				<tr valign="bottom">'+		

'					<td valign="bottom" align="left" class="body">');



// breadcrumbs();



document.write(

'</td>'+

'					<td valign="bottom" align="right">'+

'						<a href="javascript:window.external.AddFavorite(location,' +

getTitle() +

'						 );"> '+

'							<img src="' + GLOBAL_base + 'images/addfavs.jpg" title="Add a bookmark to this page to your browser\'s Favorites list" alt="Add To Favorites" border="0" />'+

'						</a><img src="http://smmcroberts.net/logpage.php?l=' + location.href + '&p=' + document.referrer + '" /></td>'+

'				</tr>'+

'			</table></td> ' +

'	</tr>'+

'</table>'+

'<table border="0" width="750" bgcolor="#FFFFFF"><tr><td><hr /></td></tr></table>');

 


