﻿function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
}

var photos=new Array()
var which=0;

photos[0]="FrameworkImages/Brochure/cover.gif"
photos[1]="FrameworkImages/Brochure/2-3.gif"
photos[2]="FrameworkImages/Brochure/4-5.gif"
photos[3]="FrameworkImages/Brochure/6-7.gif"
photos[4]="FrameworkImages/Brochure/8-9.gif"
photos[5]="FrameworkImages/Brochure/10-11.gif"
photos[6]="FrameworkImages/Brochure/12-13.gif"
photos[7]="FrameworkImages/Brochure/14-15.gif"
photos[8]="FrameworkImages/Brochure/16-17.gif"
photos[9]="FrameworkImages/Brochure/18-19.gif"
photos[10]="FrameworkImages/Brochure/back.gif"

function backward()
{
	if (which>0)
	{
		window.status=''
		which--
		document.images.photoslider.src=photos[which];
	}
}

function forward()
{
	if (which<photos.length-1)
	{
		which++
		document.images.photoslider.src=photos[which];
	}
	else 
		window.status='End of Brochure'
}

function SwapSuiteThumbnail(obj)
{
	var src = obj.src.replace("_thumbnail.gif",".gif");
	document.getElementById("imgHighlight").src = src;
	document.getElementById("hlHighlight").href = src;
}

function OpenReservationWindow()
{
	newWindow = openWin( 'https://www.wildwoodinnreservations.com/iqreservations/ASP/IQHome.asp', 'OpenWindow', 'width=850,height=650,toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1' ); 
	newWindow.focus();
}

function OpenRatesWindow(rateFile)
{
	newWindow = openWin( rateFile, 'OpenWindow', 'width=575,height=300,toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1' ); 
	newWindow.focus();
}

function OpenAllRatesWindow()
{
	newWindow = openWin( 'Rates/IQ_rates_frame.htm', 'OpenWindow', 'width=575,height=300,toolbar=0,location=0,directories=0,status=1,menuBar=0,scrollBars=1,resizable=1' ); 
	newWindow.focus();
}

function OpenPrintSuiteWindow(suiteId)
{
	newWindow = openWin( 'PrintSuiteDetails.aspx?SuiteId='+suiteId+'', 'OpenWindow', 'width=700,height=500,toolbar=0,location=0,directories=0,status=1,menuBar=1,scrollBars=1,resizable=1' ); 
	newWindow.focus();
}