window.onload = function()
{
	document.getElementById('txtContactName').focus();
}
function validateContact()
{
	var strContactName = document.getElementById('txtContactName').value;
	if(!validateNotEmpty(strContactName))
	{
		alert("Please enter your Name.");
    		document.getElementById('txtContactName').focus();
		return false;
	}
	var strArtistEmail = document.getElementById('txtContactEmail').value;
	if(!validateNotEmpty(strArtistEmail))
	{
		alert("Please enter your Email Address.");
    		document.getElementById('txtContactEmail').focus();
		return false;
	}
	if(!validateEmail(strArtistEmail))
	{
		alert("Please enter a valid Email Address.");
    		document.getElementById('txtContactEmail').focus();
		return false;
	}
	var strContactComments = document.getElementById('txtContactComments').value;
	if(!validateNotEmpty(strContactComments))
	{
		alert("Please enter your Comments.");
    		document.getElementById('txtContactComments').focus();
		return false;
	}
	
	document.getElementById('btnSend').value = 'Sending...';
	document.getElementById('btnSend').style.backgroundImage = 'none';
	document.getElementById('btnSend').disabled = 'disabled';
}