$(document).ready(function(){$('input[name=subSubmit]').click(function(){$('input[name=widget-gi-numNights]').val();$('input[name=widget-gi-numRooms]').val();if($('input[name=widget-gi-numNights]').val()=='')
{alert('Please indicate the number of nights.');$('input[name=widget-gi-numNights]').focus();return false;}
else if($('input[name=widget-gi-numNights]').val().replace(/[0-9]+/,'')!='')
{alert('The value of number of nights should contain numbers only.');$('input[name=widget-gi-numNights]').focus();return false;}
else if($('input[name=widget-gi-numNights]').val()<1||$('input[name=widget-gi-numNights]').val()>14)
{alert('The value of number of nights should be from 1 to 14 only.');$('input[name=widget-gi-numNights]').focus();return false;}
if($('input[name=widget-gi-numRooms]').val()=='')
{alert('Please indicate the value of number of rooms.');$('input[name=widget-gi-numRooms]').focus();return false;}
else if($('input[name=widget-gi-numRooms]').val().replace(/[0-9]+/,'')!='')
{alert('The value of number of rooms should contain numbers only.');$('input[name=widget-gi-numRooms]').focus();return false;}
else if($('input[name=widget-gi-numRooms]').val()<1||$('input[name=widget-gi-numRooms]').val()>99)
{alert('The value of number of rooms should be from 1 to 99 only.');$('input[name=widget-gi-numRooms]').focus();return false;}
return true;});});
