<!-- Hide script from old browsers
//print script

var da = (document.all) ? 1 : 0;
var pr = (window.print) ? 1 : 0;
var mac = (navigator.userAgent.indexOf("Mac") != -1); 

function printWindow() {
	if (pr) // NS4, IE5    
	    window.print()  
	else // other browsers
		alert("Sorry, your browser doesn't support the print feature.");  
}


//mail to a friend script


                 function mailpage()
{
                   mail_str = "mailto:?subject= " + document.title;
                  mail_str += "&body=I thought you would be interested in this story from Stories By George.com."
                   mail_str += " To read the story, go to the following link: " + location.href;
                   location.href = mail_str;
                }




// End hiding script from old browsers -->