// *************************************************************************
// Developed by HCS Enterprises Pty Ltd. 
// -------------------------------------------------------------------------
// All source code & content (c) Copyright 2006, HCS Enterprises unless
// specifically noted otherwise.
//
// The contents of this file are protect under law as the intellectual 
// property of HCS Enterprises. Any use, reproduction, disclosure or copying 
// of any kind without the express and written permission of HCS Enterprises 
// is forbidden.
// -------------------------------------------------------------------------
// Author: HCS Enterprises |  support@hcshelp.com  |  http://www.hcshelp.com
// *************************************************************************

function valid_register(th)
{
	if(trim(th.fullname.value).length<=0)
	{
		alert("Enter your fullname.");
		th.fullname.focus();
		return false;
	}
	else if(trim(th.phone.value).length<=0)
	{
		alert("Enter phone number.");
		th.phone.focus();
		return false;
	}
	else if(trim(th.email.value).length<=0 || validEmail(th.email.value))
	{
		alert("Enter valid email address.");
		th.email.focus();
		return false;
	}
	else if(th.currSymbol.value=="" )
	{
		alert("Select Currency.");
		th.currSymbol.focus();
		return false;
	}
	return true;
}