<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var sidewidth		= "150"		// SIDEBAR WIDTH (also edit CSS)
var pageheight		= "125"		// INCREASE PAGE HEIGHT


var notes1		= "yes"		// SHOW 1ST NOTES
var notes2a     = "yes"     // Show 2a notes
var notes2		= "yes"		// SHOW 2ND NOTES
var notes3      = "yes"     // SHOW 3RD NOTES


// FLASH CHANGER OPTIONS

var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "E5E9F1"	// FLASH BACKGROUND COLOR
var flashwC		= "150"		// WIDTH OF THE FLASH CHANGER
var flashhC		= "125"		// HEIGHT OF THE FLASH CHANGER
var bordercolor		= "A49C98"	// FLASH CHANGER BOTTOM BORDER COLOR





// FLASH CHANGER
   if (showsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" style="border-bottom: #'+bordercolor+' 1px solid;"><tr><td valign="top">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" id="imagechanger">');
document.write('<PARAM NAME="movie" VALUE="imagechanger.swf">');
document.write('<PARAM NAME="quality" VALUE="high">');
document.write('<PARAM NAME="bgcolor" VALUE="#'+flashcolor+'">');
document.write('<EMBED src="imagechanger.swf" quality="high" bgcolor="#'+flashcolor+'"  WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" NAME="imagechanger" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
document.write('</td></tr></table>');
document.write('<br>');
}











// 1st NOTES AREA
   if (notes1 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('This Sunday<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('August 1: Alison Day will lead this service titled, "We Are Liberal, But Are We Open Minded?" How do we as UUs deal with those who disagree with us? This service will begin at 10:00 a.m. at Ferguson High School, 1101 Hilltop Dr.'); 

document.write('<br><a href="newsletter.htm">Click for Current newsletters &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}



// 2a NOTES AREA
   if (notes2a == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('NUUC<br>');

document.write('</td></tr><tr><td class="note-text-bold">');

document.write('A spiritual home for liberal thought and action in the Loveland and Berthoud areas<br>');


document.write('</td></tr></table>');
document.write('<br><br>');
}







// 2nd NOTES AREA
   if (notes2 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('History/Biography<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('We are U and U and UU<br>');

document.write('<br><a href="history.htm">History </a>and <a href="biography.htm">Biography &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}


// 3rd NOTES AREA
   if (notes3 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('Sign In<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('Members Sign in<br>');

document.write('<br><a href="http://www.namaquauu.org/member_files/" target="_blank">Click to sign in &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}




// START DATE SCRIPT


   if (showd == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



document.write('<img src="picts/spacer.gif" width="'+sidewidth+'" height="'+pageheight+'"></a><br>');


//  End -->