First (real) commit... I hope.

This commit is contained in:
Xkeeper
2011-11-09 22:35:59 -08:00
parent 21a0695224
commit aee0a574c0
254 changed files with 12422 additions and 1 deletions

77
js/password.js Normal file
View File

@@ -0,0 +1,77 @@
function checkName()
{
if (window.document.REPLIER.username.value == '')
{
alert('Please Enter Your Username');
return true;
}
else
{
return false;
}
}
function checkPass()
{
if (window.document.REPLIER.password.value == '')
{
alert('Please Enter Your Password');
return true;
}
else
{
return false;
}
}
function checkTitle()
{
if (window.document.REPLIER.subject.value == '')
{
alert('Please Enter Your Thread Title');
return true;
}
else
{
return false;
}
}
function checkPost()
{
if (window.document.REPLIER.message.value == '')
{
alert('Please Enter Your Message');
return true;
}
else
{
return false;
}
}
function checkReciever()
{
if (window.document.REPLIER.username.value == '')
{
alert('Please Enter The Recieving User');
return true;
}
else
{
return false;
}
}
function checkSubject()
{
if (window.document.REPLIER.subject.value == '')
{
alert('Please Enter The Subject');
return true;
}
else
{
return false;
}
}