function mailto(domain,user) 
	{ 
		document.location.href = "mailto:" + user + "@" + domain + "?subject=Brynhonddu%20Country%20House%20Website%20Enquiry";
	}

function validate() {
	if (document.form1.Name.value.length < 4) { alert("You have missed out some information\nPlease enter your Full Name\n\nThank you for your interest"); return false; }
	if (document.form1.Telno.value.length < 6) { alert("You have missed out some information\nPlease enter your Telephone Number\n\nThank you for your interest"); return false; }
	if (document.form1.email.value.length < 6) { alert("You have missed out some information\nPlease enter your Email Address\n\nThank you for your interest"); return false; }
	}

function pop3(url,winheight,winwidth)
{
	//Centred popup window
	if (winheight==null) winheight='480';
	if (winwidth==null) winwidth='540';
	window.name="mainwin"
	wintype="prodwin"
	var left   = (screen.width  - winwidth)/2;
	var top    = (screen.height - winheight)/2;
	var params = 'width='+winwidth+', height='+winheight;
	params += ', top='+top+', left='+left;
	params += ', directories=no';
	params += ', location=no';
	params += ', menubar=no';
	params += ', resizable=no';
	params += ', scrollbars=no';
	params += ', status=no';
	params += ', toolbar=no';
	newwin=window.open(url, wintype, params);
}

