// ********************************************************************************************************* //
// Centralize banner and header //
// ********************************************************************************************************* //
var virtualDomainName = "";

function bannerArea(strSection,strLocation)
{
    document.writeln("<img src=\"images/ban_main.gif\" border=\"0\" /><br />");
    document.writeln("<div>");
    if(strSection == "home")
        document.writeln("    <p><a href=\"" + strLocation + "default.asp\"><img src=\"" + strLocation + "images/menu_home_r.gif\" border=\"0\" name=\"idHome\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "default.asp\" onmouseover=\"document.idHome.src='" + strLocation + "images/menu_home_r.gif';\" onmouseout=\"document.idHome.src='" + strLocation + "images/menu_home.gif';\"><img src=\"" + strLocation + "images/menu_home.gif\" border=\"0\" name=\"idHome\" /></a></p>");
    if(strSection == "grantsstory")
        document.writeln("    <p><a href=\"" + strLocation + "grantsstory.asp\"><img src=\"" + strLocation + "images/menu_grantsstory_r.gif\" border=\"0\" name=\"idGrant\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "grantsstory.asp\" onmouseover=\"document.idGrant.src='" + strLocation + "images/menu_grantsstory_r.gif';\" onmouseout=\"document.idGrant.src='" + strLocation + "images/menu_grantsstory.gif';\"><img src=\"" + strLocation + "images/menu_grantsstory.gif\" border=\"0\" name=\"idGrant\" /></a></p>");
    if (strSection == "familyfunrun")
        document.writeln("    <p><a href=\"" + strLocation + "familyfunrun.asp\"><img src=\"" + strLocation + "images/menu_familyfunrun_r.gif\" border=\"0\" name=\"idFamilyFunRun\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "familyfunrun.asp\" onmouseover=\"document.idFamilyFunRun.src='" + strLocation + "images/menu_familyfunrun_r.gif';\" onmouseout=\"document.idFamilyFunRun.src='" + strLocation + "images/menu_familyfunrun.gif';\"><img src=\"" + strLocation + "images/menu_familyfunrun.gif\" border=\"0\" name=\"idFamilyFunRun\" /></a></p>");  
    if(strSection == "fundedprojects")
        document.writeln("    <p><a href=\"" + strLocation + "fundedprojects.asp\"><img src=\"" + strLocation + "images/menu_fundedprojects_r.gif\" border=\"0\" name=\"idFunded\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "fundedprojects.asp\" onmouseover=\"document.idFunded.src='" + strLocation + "images/menu_fundedprojects_r.gif';\" onmouseout=\"document.idFunded.src='" + strLocation + "images/menu_fundedprojects.gif';\"><img src=\"" + strLocation + "images/menu_fundedprojects.gif\" border=\"0\" name=\"idFunded\" /></a></p>");
    if(strSection == "sponsorspartners")
        document.writeln("    <p><a href=\"" + strLocation + "sponsorspartners.asp\"><img src=\"" + strLocation + "images/menu_sponsorspartners_r.gif\" border=\"0\" name=\"idSponsor\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "sponsorspartners.asp\" onmouseover=\"document.idSponsor.src='" + strLocation + "images/menu_sponsorspartners_r.gif';\" onmouseout=\"document.idSponsor.src='" + strLocation + "images/menu_sponsorspartners.gif';\"><img src=\"" + strLocation + "images/menu_sponsorspartners.gif\" border=\"0\" name=\"idSponsor\" /></a></p>");
    if(strSection == "waystogive")
        document.writeln("    <p><a href=\"" + strLocation + "waystogive.asp\"><img src=\"" + strLocation + "images/menu_waystogive_r.gif\" border=\"0\" name=\"idWays\" /></a></p>");
    else
        document.writeln("    <p><a href=\"" + strLocation + "waystogive.asp\" onmouseover=\"document.idWays.src='" + strLocation + "images/menu_waystogive_r.gif';\" onmouseout=\"document.idWays.src='" + strLocation + "images/menu_waystogive.gif';\"><img src=\"" + strLocation + "images/menu_waystogive.gif\" border=\"0\" name=\"idWays\" /></a></p>");
    document.writeln("</div>");
}

function footerArea(strLocation)
{
    document.writeln("<div class=\"clsFooter\">");
    document.writeln("    <p class=\"clsLeftFooter\">&copy;2006 Grant-a-Starr Foundation. Grant-a-Starr Foundation is a 501 (c) (3) charitable organization.</p>");
    document.writeln("    <p class=\"clsRightFooter\">");
    document.writeln("        <a href=\"" + strLocation + "termsofuse.asp\">Terms of Use</a>");
    document.writeln("        &nbsp;&nbsp;|&nbsp;&nbsp;");
    document.writeln("        <a href=\"" + strLocation + "privacypolicy.asp\">Privacy Policy</a>");
    document.writeln("    </p>");
    document.writeln("</div>");
}

//************************************************************************************************
function funcValidate(strField,strFieldLimitation)
{
	if(!strField) return false;
	var Chars = strFieldLimitation
	
	for (var i = 0; i < strField.length; i++)
	{
		if (Chars.indexOf(strField.charAt(i)) == -1)
		{
			alert("Please enter number field");
			return false;
		}
	}	
}

