function checkguestbook(form)
{
	count = 0;
	document.getElementById('msg').style.display = 'none';
	document.getElementById('error1').style.display = 'none';
	document.getElementById('error2').style.display = 'none';
	document.getElementById('error3').style.display = 'none';
	document.getElementById('error4').style.display = 'none';
	document.getElementById('error5').style.display = 'none';

	if (form.gb_name.value.length < 1)
	{
		document.getElementById('error1').style.display = 'block';
		count++;
	}
	if (form.gb_email.value.length < 1)
	{
		document.getElementById('error2').style.display = 'block';
		count++;
	}
	if (form.gb_comments.value.length < 1)
	{
		document.getElementById('error3').style.display = 'block';
		count++;
	}
	if (form.gb_captcha.value.length < 1)
	{
		document.getElementById('error4').style.display = 'block';
		count++;
	}

	if (count == 0)
	{
		document.getElementById('msg').style.display = 'none';
		return true;
	}
	else
	{
		document.getElementById('msg').style.display = 'block';
		hide();
		return false;
	}
}

function hide()
{
	setTimeout("document.getElementById('msg').style.display = 'none';", 10000);
}

function show()
{
	document.getElementById('msg').style.display = 'block';
	hide();
	return false;
}

function reloadcaptcha()
{
	document.getElementById('captcha').src = document.getElementById('captcha').src + '&d=' + (new Date()).getTime();
}

function checkcontact(form)
{
	count = 0;
	document.getElementById('msg').className = 'error';
	document.getElementById('msg').style.display = 'none';
	document.getElementById('success').style.display = 'none';
	document.getElementById('error1').style.display = 'none';
	document.getElementById('error2').style.display = 'none';
	document.getElementById('error3').style.display = 'none';
	document.getElementById('error4').style.display = 'none';
	document.getElementById('error4').style.display = 'none';

	if (form.c_name.value.length < 1)
	{
		document.getElementById('error1').style.display = 'block';
		count++;
	}
	if (form.c_email.value.length < 1)
	{
		document.getElementById('error2').style.display = 'block';
		count++;
	}
	if (form.c_subject.value.length < 1)
	{
		document.getElementById('error3').style.display = 'block';
		count++;
	}
	if (form.c_message.value.length < 1)
	{
		document.getElementById('error4').style.display = 'block';
		count++;
	}
	if (form.c_captcha.value.length < 1)
	{
		document.getElementById('error5').style.display = 'block';
		count++;
	}
	
	if (count == 0)
	{
		document.getElementById('msg').style.display = 'none';
		return true;
	}
	else
	{
		document.getElementById('msg').style.display = 'block';
		hide();
		return false;
	}
}

var player = '';

function launchplayer()
{
	if (!player.location) {
		player = window.open('http://www.saltfishforty.co.uk/player/','player','width=400,height=200,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,screenX=50,screenY=50,left=50,top=50');
	}
	player.focus();
}