<!-- Begin HEADER OPTIONS CODE

// ONLY USE lowercase FOR ALL OPTIONS

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

var topspacing		= "80"		// MOVE LOGO DOWN ( 50 = 0 )
var leftspacing		= "0"		// MOVE LOGO RIGHT

// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="left" width="'+leftspacing+'">');
document.write('<img src="picts/spacer.gif" width="'+leftspacing+'" height="'+topspacing+'"><br>');
document.write('</td><td valign="bottom" align="left">');
/* document.write('<a href="index.html"><img src="picts/logo.jpg" border="0"></a><br>'); */
/* link changed to image.htm so clicking on the logo displays the home page. RJT 12-11-2009. */


/*********************************************************************************************************************************************************/
/* The following code suppresses the Stamford Historical Society's logo on JHS pages.
/* If the page belongs to the Jewish Historical Society, i.e. if the page's filename begins "jhslfc...", no logo is displayed.
/* Other special logo handling can be done by adding another test based on the 1st few characters of the page's filename.
/* For all other pages, the standard logo is displayed.
/*
/* sPage is set to the page's html filename. 
/* sPrefix6 is set to the 1st 6 characters of the page's html filename.
/* The variable, sDefault, is initialized to "yes", and changed to "no" if a non-standard sidebar is to be used.
/*
/* RJT. February 2010.
/*********************************************************************************************************************************************************/
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var sPrefix6 = sPage.substring(0,6);
var sDefault = "yes";
if (sPrefix6 == "jhslfc")
	{
	sDefault = "no";
	}
if (sDefault == "yes")
	{	
document.write('<a href="index.htm"><img src="picts/logo.jpg" border="0"></a><br>');
	}
	
document.write('</td></tr></table>');




//  End -->
