<!--
var win = null;

function openWindow(url, windowName)
{
	win = window.open(url, windowName);
	win.focus();
}

var popupwin = null;
//	checkTerms appears in the following files:
//	ContactUs.htm
//	HotelInformation.htm
//	News.htm
function checkTerms(url)
{
	var walks = "walks";
	var s = "'";
	if((popupwin==null)||(popupwin.closed))
	{
		popupwin = window.open("", "tc", "width=650,height=450,resizable=1,scrollbars");
		popupwin.document.open("text/html");
	}

	popupwin.document.write('<head><link rel="stylesheet" type="text/css" href="./style1.css" /></head><body>');
	popupwin.document.write('<h2>Terms and conditions.</h2><form><p>To attend our walks you must confirm that you are in good health and that you are not walking with any known medical problem without your doctor&acute;s approval.<br>&nbsp;<br>');
	popupwin.document.write('Generally our walks are undulating but could involve a climb or descent of cerca two thousand feet. Walks in the National Park are less steep but at altitudes between 6-8 thousand feet. Check with us if in doubt.<br>&nbsp;<br>');
	popupwin.document.write('Whilst every care is taken KWA accepts no responsibility for losses, accidents or injury.<br>&nbsp;<br>');
	popupwin.document.write('You need to carry your E111 and medical insurance at all times - we do not have holiday insurance to cover you.<br>&nbsp;<br>');
	popupwin.document.write('I/We have read and accepted all requirements and note that your walks are non-smoking.<br>&nbsp;<br>');
	popupwin.document.write('To accept these terms and conditions and continue to the booking form please click the button below.<br>&nbsp;<br>');
	popupwin.document.write('<center><input type="button" value="I Accept" onclick="window.open(');
	popupwin.document.write(s + 'booking/' + url + s + ',' + s + walks + s);
	popupwin.document.write(');window.close()"> <input type="button" value=" Cancel " onclick="javascript:window.close()"></center></form></body></html>');
	popupwin.document.close();
	popupwin.focus();
}
-->