initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:32:16 -06:00
commit 194e0ca89e
399 changed files with 16444 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// JavaScript Document for Jairus Society : english
function CheckGuestbookFields()
{
if((document.getElementById( "name" ).value == "")
|| (document.getElementById( "message" ).value == ""))
{
alert( "Please enter both a name AND message!!" );
return false;
}
else { return true; }
}