var eventName = new Array("Best of Italy", "Rioja &amp; Spain", "Made in France", "Australia", "New Zealand", "Argentina", "Chile", "Malt Whisky &amp; Chocolate", "California", "Hall of Fame", "A Rose For My Rose", "South Africa", "Italian Greats", "Evening in Spain", "French Connection", "Champagne &amp; Chocolate", "Bubbles, Sparkle &amp; Stars", "Christmas Favourites", "Twinkle, Sparkle, Fizz", "Christmas Favourites &amp; Wine For Log Fires", "Italian Christmas", "Christmas Sparklers", "Champagne &amp; Chocolate", "Christmas Down Under", "Festive Sparklers", "Wine For Log Fires", "New Year Specials", "The Last Drops", "Celebration Day - Champagne &amp; Chocolate", "***Gift Vouchers***", "TALL, DARK &amp; HANDSOME ITALIANS", "SEXY, CHIQUE &amp; MADE IN FRANCE", "DOWN UNDER - SEDUCTION TIME", "HALL OF FAME", "FIERY &amp; PASSIONATE SPANISH NUMBERS", "CHAMPAGNE &amp; CHOCOLATE", "WILD ABOUT SOUTH AFRICA");

var eventInfo = new Array("From Amarone to Chianti, Soave to Prosecco taste the dolce vita with unforgettable wines from Italy.", "Taste our cutting edge wines from silky riojas to deep red toros.  This is an exciting tasting of Iberian treasures!", "From Bordeaux to Burgundy we taste the famous wines of France.  Still reckoned to be the best in the world!", "Black as night shiraz and the most amazing wines from this sensational winemaking country.  You&#8217;ll waltz with Matilda out of this tasting!", "The Kiwi Experience gives you the chance to savour all that is great about New Zealand&#8217;s fine wines.  Pinot Noir enthusiasts this is for you!!!", "High up in the Andes this is one of our most exciting tastings with wines to make you sing Don&#8217;t Cry for me!", "From Carmenere to Cabernet, Sauvignon Blanc to Chardonnay we have all the wonderful wonderful wines from the land of fire and water!  Not to be missed!", "Try a selection of the finest Malt whiskies from Scotland and Ireland tasting alongside our specialised chocolate from Plaisir du Chocolat.  This is a perfect match so book early!!", "The land of beautiful people gives us beautiful wine and sparkle too! An exciting tasting and Pinot Noir fans this is your tasting!", "Our selected top wines from around the world!  Taste the quality!", "A fantastic selection of the top rose from around the world including sparkle!!!", "Come in for an evening in the Cape.  The line up of wines are superb, marvellous, sensational!", "From Amarone to Chianti, Soave to Prosecco taste the dolce vita with unforgettable wines from Italy.", "Taste our cutting edge wines from silky riojas to deep red toros.  This is an exciting tasting of Iberian treasures!", "From Bordeaux to Burgundy we taste the famous wines of France.  Still reckoned to be the best in the world!", "The very finest champagnes to match against the finest chocolate from Plaisir du Chocolat.  Book early!", "Try the best sparkling wines of the world and reach for the stars.", "Find out which wines to stock up with for your parties and Christmas day.<br /><br />*Price includes Cheese &amp; Biscuits", "Sparkling wines of the world including Champagne.<br /><br />*Price includes Tapas", "Learn to match the best Sparkling wine, red/white wine, fortified wine.<br /><br />*Price includes Cheese &amp; Biscuits", "Our favourite Italian wines finished off with a starter and a plate of pasta.", "Taste the finest sparkling wines of the world including champagne accompanied by tapas.", "Back by popular request and a sell out at the Edinburgh fringe taste the finest champagnes partnered by hand made velvety chocolate from Coco of Bruntsfield", "Magnificent wines from Australia and New Zealand to make Christmas unforgettable.<br /><br />*Price includes Cheese &amp; Biscuits", "Champagne and sparkling wines from around the world.<br /><br />*Price includes Tapas", "A selection of the finest wines to bring in the New Year and see out the Old Year.<br /><br />*Price includes Cheese &amp; Biscuits", "a selection of the finest wines from around the world to see out the old year and bring in the New Year in real Scottish Style.<br /><br />*Price includes Cheese &amp; Biscuits", "Before the old year ends taste the finest wines from around the world.<br /><br />*Price includes Cheese &amp; Biscuits", "Celebrate the first day of 2009 with the best champagnes accompanied by the finest hand made chocolate &#8211; a sell out at the Edinburgh Fringe rated 4 stars!!", "Gift Vouchers are now available and can be used towards any of our wine tasting events. The vouchers have no expiry date and can be purchased in increments of &pound;5.", "From Brunello to Chianti this tasting of Italian wines is unforgettable", "From Burgundy to Bordeaux the very finest French wines", "Be prepared to be stunned by the wines from Australia, New Zealand and Tasmania", "The wines we consider to be the finest in the world from small passionate winemakers", "Rioja to the fiery south we have delicious wines to stun you.", "This premier tasting includes some of the greatest champagnes concluding with a top deluxe vintage.  We will taste hand made chocolates with scrumptuous centres.  This is a tasting not to be missed.  Sold out last year so book early!", "From the cape world class wines which are fresh delicious and utterly moreish");


function showEventDetails(arrayPosition)
{
    newWindow = window.open("", "Events", "width=400px, height=250px, scrollbars=no, status=yes, toolbar=no, location=no, resizable=no");
	newWindow.document.write("<html><head><title>Edinburgh Wine School -  "+eventName[arrayPosition]+"</title></head><body onblur='this.close();' style='padding:0px; margin:0px;background-color:#FFF'><div style='float:left; width:400px; background-color:#000'><h1 style='font-size:1.6em; padding:10px; margin:0px; text-align:center; color:#FFF'>"+(eventName[arrayPosition])+"</h1></div><div style='width:380px; margin:0px; padding:10px; float:left'><p style='font-size:1.2em'>");
	newWindow.document.write(eventInfo[arrayPosition]);
	newWindow.document.write("</p><p style='text-align:center'><a href='javascript:this.close()'>Close Window</a></p></div></body></html>");
	newWindow.document.close();
}

function showEventDetails(name,desc)
{
    newWindow = window.open("", "Events", "width=400px, height=250px, scrollbars=no, status=yes, toolbar=no, location=no, resizable=no");
	newWindow.document.write("<html><head><title>Edinburgh Wine School -  "+name+"</title></head><body onblur='this.close();' style='padding:0px; margin:0px;background-color:#FFF'><div style='float:left; width:400px; background-color:#000'><h1 style='font-size:1.6em; padding:10px; margin:0px; text-align:center; color:#FFF'>"+name+"</h1></div><div style='width:380px; margin:0px; padding:10px; float:left'><p style='font-size:1.2em'>");
	newWindow.document.write(desc);
	newWindow.document.write("</p><p style='text-align:center'><a href='javascript:this.close()'>Close Window</a></p></div></body></html>");
	newWindow.document.close();
}

function validateOrder(i)
{
	if(document.getElementsByName(i)[0].quantity.value > 0)
		return true;
	else
	{
		alert("You must enter a quantity before pressing add");
		return false;
	}
}

function bookingClosed()
{
		alert("This event is now fully booked.\nPlease contact 07855-284-875 in the event of any cancellations.");
		return false;
}

function bookingFull()
{
		alert("This event is now fully booked.\nPlease contact 07855-284-875 in the event of any cancellations.");
}

function checkform()
{
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
	var result=true;
	
	if(document.getElementById("contact").name.value=="")
	{	
		result=false;
		document.getElementById("contact").name.style.backgroundColor='#FFDDDD';
	}
	else
	{
		document.getElementById("contact").name.style.backgroundColor='#FFFFFF';
	}
	
	if(document.getElementById("contact").address.value=="")
	{	
		result=false;
		document.getElementById("contact").address.style.backgroundColor='#FFDDDD';
	}
	else
	{
		document.getElementById("contact").address.style.backgroundColor='#FFFFFF';
	}
	
	if(document.getElementById("contact").phone.value=="")
	{
		document.getElementById("contact").phone.style.backgroundColor='#FFDDDD';
		result= false;
	}
	else
	{
		document.getElementById("contact").phone.style.backgroundColor='#FFFFFF';
	}

	if(!filter.test(document.getElementById("contact").email.value))
	{
		document.getElementById("contact").email.style.backgroundColor='#FFDDDD';
		result= false;
	}
	else
	{
		document.getElementById("contact").email.style.backgroundColor='#FFFFFF';
	}
	
	if(result==false)
	{
		alert("The highlighted fields are mandatory and have not been completed correctly.  Please check and try again.");
	}
	
	return result;
}
 
 
