function munge()
{
	var Att = "@";
	var Ennd = "com";
	var beginn = "mailto:";
	var whereTo = "info"+Att+"weaverwines."+Ennd;
	window.location = beginn+whereTo;
}
function munge2()
{
	var Att = "@";
	var Ennd = "com";
	var beginn = "mailto:";
	var whereTo = "taste"+Att+"weaverwines."+Ennd;
	window.location = beginn+whereTo;
}
function munge3()
{
	var Att = "@";
	var Ennd = "com";
	var beginn = "mailto:";
	var whereTo = "prgirl"+Att+"weaverwines."+Ennd;
	window.location = beginn+whereTo;
}
function validate()
{
	if (document.form1.elements["FirstName"].value !="" && document.form1.elements["LastName"].value !="" &&
	document.form1.elements["email"].value !="" && document.form1.elements["Phone"].value !="" &&
	document.form1.elements["Party"].value !="")
	{
		document.form1.submit();
		return true;
	}
	else
	{
		alert("All fields are required.")
		return false;
	}
}

function validatesignup()
{
	if (document.form1.elements["FirstName"].value !="" && document.form1.elements["LastName"].value !="" &&
	document.form1.elements["email"].value !="")
	{
		document.form1.submit();
		return true;
	}
	else
	{
		alert("All fields are required.")
		return false;
	}
}

function popper(thisUrl,thisWidth,thisHeight,thisTop,thisLeft,thisScrollbar) {
	//options = "?" + options;
	optionString = ('width=' + thisWidth + ',height=' + thisHeight + ',top=' + thisTop + ',left=' + thisLeft + ',scrollbars=' + thisScrollbar +',status=no,toolbar=no,menubar=no,location=no,directories=no,alwaysRaised=yes,resizable=no,,copyhistory=no');
	mainWin = window.open(thisUrl,'',optionString);
	//return mainWin;
}