// ********************************
// Creating a New Member Account

function isblank1()
{
var blank_exists="";

if (document.forms[0].elements[0].value == "")
	{blank_exists=blank_exists + "USERNAME is blank. \n\tPlease enter a Username. \n";}
if (document.forms[0].elements[1].value == "")
	{blank_exists=blank_exists + "PASSWORD is blank. \n\tPlease enter a Password. \n";}
if (document.forms[0].elements[2].value == "")
	{blank_exists=blank_exists + "EMAIL is blank. \n\tPlease enter a Contact Email. \n";}
if (document.forms[0].elements[3].value == "")
	{blank_exists=blank_exists + "NICKNAME is blank. \n\tPlease enter a Nickname. \n";}
if (document.forms[0].elements[5].value == "")
	{blank_exists=blank_exists + "FIRST NAME is blank. \n\tPlease enter a First Name. \n";}
if (document.forms[0].elements[6].value == "")
	{blank_exists=blank_exists + "LAST NAME is blank. \n\tPlease enter a Last Name. \n";}
if (document.forms[0].elements[7].value == "")
	{blank_exists=blank_exists + "ADDRESS is blank. \n\tPlease enter an Address. \n";}
if (document.forms[0].elements[8].value == "")
	{blank_exists=blank_exists + "CITY is blank. \n\tPlease enter a City. \n";}
if (document.forms[0].elements[9].value == "")
	{blank_exists=blank_exists + "STATE is blank. \n\tPlease enter a State. \n";}
if (document.forms[0].elements[10].value == "")
	{blank_exists=blank_exists + "ZIP CODE is blank. \n\tPlease enter a Zip Code. \n";}
if (document.forms[0].elements[11].value == "")
	{blank_exists=blank_exists + "PHONE NUMBER is blank. \n\tPlease enter a Telephone Number. \n";}

if (blank_exists=="")
{return true;}
else
{alert(blank_exists);
return false;}
}
