function stay(){var item = document.forms[0].period.value.toLowerCase();var group = document.forms[0].choice;if (item ==""|| item <=0){alert("You must input a positive number, please try again");document.form1.period.focus();return;}if (item > 21){alert("The maximum stay allowed is 21 days. Click 'Reset' and try again");document.form1.period.focus();return;}if (isNaN(item)){alert("Input numbers only. Click 'Reset' and try again");document.form1.period.focus();return;}if (group[1].checked){var nights = 42;}else{var nights = 54;}if (item < 4 && nights == 54) {nights = 60;}cost = (Math.round(item * nights));stats='toolbar=no,location=no,directories=no,status=no,menubar=no,' ;stats += 'scrollbars=yes,resizable=no,';MsgBox = window.open ("","msgWindow",stats);MsgBox.document.write("<head><title>Bed and Breakfast cost<\/title><\/head>");MsgBox.document.write ("<body><center><h4>TJ Walking Bed and Breakfast<\/h4><hr>");if (nights == 54 || nights == 60){MsgBox.document.write("<h4>The total cost for 2 people Bed and Breakfast twin/double room for " + item + " nights<\/h4>");MsgBox.document.write("<h4>" + cost + " Euro<\/h4>");}else{MsgBox.document.write("<h4>The total cost for a single occupant Bed and Breakfast for " + item + " nights<\/h4>");MsgBox.document.write("<h4>" + cost + " Euro<\/h4>");}MsgBox.document.write ("<h4>To book go to the booking page and complete the form stating your dates and your telephone number<br><br> we will call you back for your card details or <br><br>telephone 00 351 291 783268 and speak to us direct<\/h4>");MsgBox.document.write ("<p>Click Close<\/p>"); MsgBox.document.write ("<input type='button' value='Close' onClick = 'self.close()'>") MsgBox.document.write ("<\/center><\/body>") }