<!-- 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 notes2		= "yes"		// SHOW 2ND NOTES

// TEMPLATE DATE

var showd		= "yes"  	// SHOW THE DATE
var dateLR		= "right"  	// DATE LEFT OR RIGHT
var dateX		= "15"  	// DATE X LOCATION
var dateY		= "133"  	// DATE Y LOCATION


// FLASH CHANGER OPTIONS

var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "D2D1CC"	// 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('Mass Time Changes');

document.write('</td></tr><tr><td class="note-text">');

document.write('A reminder that (2) mass times have been changed to 8:30 a.m. and 11:00 a.m. starting Sunday, July 4th.<br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}


// 2nd 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('Latest Quarterly Newsletter');

document.write('</td></tr><tr><td class="note-text">');

document.write('The latest SFC Quarterly Newsletter is now availalbe on this website.<br>');

document.write('<br><a href="news.htm"> Read more about this in the "News" &gt;&gt;</a><br>')
// document.write('<br><a href="news.htm"> in the News &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}


// 3rd 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('Church Website Gets Shorter Address');

document.write('</td></tr><tr><td class="note-text">');

document.write('Ever had trouble typing that long web address name "Saint FrancesCabrini Church.org" in a web browser to get to this site?  Well now you do not have to!  Now you have the option to merely type in "SFCtn.org" to get you to the same place. <br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}


// 4th 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('Posting of the Weekly Homily<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('Father Michael is making his weekly homily available for review by posting it on this website.<br>');

document.write('<br><a href="news.htm"> Read more about this in the "News" &gt;&gt;</a><br>')
// document.write('<br><a href="news.htm"> in the News &gt;&gt;</a><br>');

document.write('</td></tr></table>');
document.write('<br><br>');
}


// 5th 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('New Constitution and By-Laws<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('The parish council approved a newly drafted constitution & by-laws and is now available for public review.<br>');

document.write('<br><a href="about.htm"> Read more about this in "About Us" &gt;&gt;</a><br>')
// document.write('<br><a href="about.htm"> in the News &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 -->