<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td align="center">');

// FLASH CHANGER OPTIONS

var notes1		= "no"		// SHOW 1ST NOTES
var notes2		= "no"		// SHOW 2ND NOTES



var sidewidth		= "170"		// SIDEBAR WIDTH - ALSO EDIT THE CSS SIDEBAR WIDTH
var pageheight		= "5"		// ADD HEIGHT TO ALL PAGES

var phone		= "no"		// SHOW PHONE NUMBER
var phoneLR		= "right"	// phone LEFT OR RIGHT
var phoneX		= "25"		// phone X LOCATION
var phoneY		= "700"		// phone Y LOCATION



// START DATE SCRIPT

var showd	= "no"  	// SHOW THE DATE
var dateLR	= "right"  	// DATE LEFT OR RIGHT
var dateX	= "25"  	// DATE X LOCATION
var dateY	= "175"  	// DATE Y LOCATION
   
document.write('<br>');




// 1ST NOTES AREA

   if (notes1 == "yes") {
document.write('<fieldset><legend>');

document.write('Dream Come True<br></legend>');

document.write('What began as an exciting dream has become an even more exciting reality.  <a href="contact.htm">Contact us...</a><br>');

document.write('</fieldset>');
document.write('<br><br><br>');
}







// 2ND NOTES AREA

   if (notes2 == "yes") {
document.write('<fieldset><legend>');

document.write('Call Now<br></legend>');

document.write('              1-803-283-9988');

document.write('</fieldset>');
document.write('<br>');
}







// START SIDEBAR MENU //










// END SIDEBAR MENU //










// START PHONE NUMBER IN TOP MENU

   if (phone == "yes") {
document.write('<div id="phone-location" style="'+phoneLR+': '+phoneX+'px; POSITION: absolute; TOP: '+phoneY+'px" class="menu-note">');

document.write('Phone: 1-803-283-9988<br>');

document.write('</div>');
}








// PAGEHEIGHT AND WIDTH SPACER (EDIT VARIABLES AT THE TOP)

document.write('<IMG SRC="picts/spacer.gif" HEIGHT="'+pageheight+'" WIDTH="'+sidewidth+'" border="0"><br>');

document.write('</td></tr></table>');


//  End -->




<!-- START





// SAMPLE SCROLLING NEWS FOR A .JS FILE NON-FLOATING


document.write('<table cellpadding="0" cellspacing="0" border="0" style="border: #000000 1px solid; background-color: #000000;COLOR: #996600; FONT: 13px arial, sans-serif; font-weight: bold;"><tr><td align="center">');
document.write('<br>');
document.write('</td></tr><tr><td>');
document.write('<iframe id="NewsWindow" src="news_win.htm" width="175" height="175" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" style="border: #000000 1px solid;"></iframe>');
document.write('</td></tr></table>');
document.write('<br><br>');

// END CODE 1


if (showd == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
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>');
}








