function show_new_window(surl,iwidth,iheight,status,toolbar)
{
    newWindow = document.open(surl, "New", "width=" + iwidth + ",height=" + iheight + ",status=" + status + ",toolbar=" + toolbar + ",menubar=no,scrollbars=yes,resizable=yes"); 
    newWindow.window.focus();
}

function optionalTourWindow(tourID)
{
	newWindow = window.open('/holidays/optional_tour_details.asp?tourID=' + tourID, 'tourDetails', 'scrollbars=yes,resizable=yes,width=800,height=500')
	newWindow.focus()		
}
		
function SubmitTourOptions(bookingForm)
{
	//check any options have been selected
	return true			
}
	
function redirect_page(surl)
{
    document.location.href = "" + surl; 
}

