<!-- Begin POP-UP SIZES AND OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS


var showinfo		= "yes"		// SHOW THE Department Information ON THE PAGE
var nameaddrLR		= "left"	// DATE LEFT OR RIGHT
var nameaddrX		= "320"		// DATE X LOCATION
var nameaddrY		= "-12"		// DATE Y LOCATION
var telfaxLR		= "left"	// DATE LEFT OR RIGHT
var telfaxX		= "555"		// DATE X LOCATION
var telfaxY		= "4"		// DATE Y LOCATION
var color		= "15416C"	// () HEADER BACKGROUND COLOR


// START Department Information SCRIPT
   if (showinfo == "yes") {
document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" BGCOLOR="#'+color+'"><tr><td ALIGN="LEFT">');
document.write('<div id="nameaddr-location" style="'+nameaddrLR+': '+nameaddrX+'px; POSITION: absolute; TOP: '+nameaddrY+'px"; z-index:1 nowrap>');
document.write('<span class="style55">');
document.write('<br>New Bedford Historical Commission');
document.write('</span>');
document.write('<span class=\"deptinfo-font\">');
document.write('<br>National Park');
document.write('<br>33 William Street');
document.write('<br>New Bedford, MA 02740');
document.write('</div>');

document.write('<div id="telfax-location" style="'+telfaxLR+': '+telfaxX+'px; POSITION: absolute; TOP: '+telfaxY+'px"; z-index:1 nowrap>');
document.write('<br>Tel. : 508.996.4095');
document.write('<br>Fax: 508.984.1250');
document.write('<br>Business Hours: 8:00am - 4:00pm');

document.write('<br></span>');
document.write('</td></tr></table>');
document.write('</div>');

}



// -- END -->