

function isUp(){
    var but = "" +
	    "<table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" width=\"125\" id=\"LoginBox\" bgcolor=\"white\" style=\"margin: 3px\" background=\"/Images/csblogin3.jpg\">" +
	    "<tr><td align=\"center\">" +
	    "<span style=\"font-size: 10pt; font-weight:bold; color:#000099;\">ONLINE BANKING</span><br>" +
	    "<a href=\"https://www.gotocsbonline.com/PBI_PBI1961/Pbi1961.asp?Rt=072412037&LogonBy=Connect3&PRMAccess=Account\">"+
	    "<img src=\"/Images/login.gif\" border=\"0\"></a><br>" +
	    "<p align=\"center\"><font size=\"2\" color=\"#0000FF\">* New to Online Banking? <br>" +
	    "<i><a href=\"/OnlineBanking.aspx\">Click Here</a></i> for Details</font></P>" +
	    "<img src=\"/icons/dot_clear.gif\" width=\"125\" height=\"1\"></td></tr></table>"

	document.getElementById("OnlineBankingLoginButton").innerHTML = but;
}

function isDown() {
    var but = "<table border=0 cellpadding=3 cellspacing=0 width=125 id=LoginBox bgcolor=white style='margin: 3' background=/Images/csblogin3.jpg><tr>" +
	    "<tr><td align=center>" +
	    "<font SIZE=2 COLOR=#000099><span style=\"font-size: 10pt; font-weight:bold\">ONLINE BANKING</span></font><BR><BR>" +
	    "<font SIZE=2 COLOR=#ff0000><B>Online Banking System is Currently Unavailable, please try again later.</B><br><br></font>" +
	    "<p align=center><font size=2 color=#0000FF>* New to Online Banking? <br>" +
	    "<i><a href=/Enrollment.aspx>Click Here</a></i> for Details</font></P>" +
	    "<img src=/icons/dot_clear.gif width=125 height=1></td></tr></table>"

    document.getElementById("OnlineBankingLoginButton").innerHTML = but;
}

if(LoginIsUp){
    isUp()
}else{
    isDown()
}

