<!-- 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 color		= "EEDEBE"	// HEADER BACKGROUND COLOR (EDIT IN THE css FILE)
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var stripes	 	= "no"		// SHOW STRIPE UNDER THE FLASH
var showlogin		= "no"		// SHOW THE LOGON ON THE PAGE

// COPYRIGHT 2010 © www.savedbygrace.com
// 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%" BGCOLOR="#EEDEBE"><tr><td align="left">');

// edit height for top space
document.write('<img src="picts/spacer.gif" width="10" height="0" border="0"><br>');



   if (stripes == "yes") {
document.write('</td></tr><tr class="printhide"><td class="pagebars">');
document.write('<img src="picts/spacer.gif" width="10" height="1"><br>');
}
document.write('</td></tr></table>');



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" 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>');

}





// START login SCRIPT
   if (showlogin == "yes") {


document.write('<div id="login-location" class="logon-font">');

document.write('<form action="http://www.savedbygrace.com/am/login.php" method="post">');

document.write('User: ');
document.write('<input type="text" name="amember_login" size="5">');

document.write(' Pass: ');
document.write('<input type="password" name="amember_pass" size="5">');
document.write(' ');
document.write('<input type="submit" value=" Login">');

document.write('<br> ');

document.write('Free SBG Membership');

document.write('</form>');




document.write('</div>');
}


//  End -->
