//-- Javascript include file for demo8.yourfirmonline.co.uk
//-- Copyright 2007 (c) AccSys Business Consultants Ltd

function DisplayYear()
{
	today = new Date();
	document.write( today.getFullYear() );	
}

		
function clearText(thefield)
{
	if (thefield.defaultValue==thefield.value)
		thefield.value = ""
} 

function onDisplayRightHandColumn( siteID )
{
	document.write( '<iframe frameborder=0 src="/ard/rhcl.asp?AID=' + siteID + '&Source=' + escape( document.location ) + '" scrolling=no width=100% height=430 allowtransparency="yes"></iframe>' );
}

function onQuickLogonSubmit()
{
	// This is cross browser safe code
	var	objEmail = document.getElementById( 'QuickLogon_emailAddress' );
	var objPassword = document.getElementById( 'QuickLogon_Password' );
	
	if ( objEmail.value.length == 0 )
	{
		alert( 'Please enter your Email address before continuing' );
		objEmail.focus();
		return false;
	}

	if ( objPassword.value.length == 0 ) 
	{
		alert( 'Please enter your Password before continuing' );
		objPassword.focus();
		return false;
	}

	return true;
}
