function newWindow (file) {

var index = 'gallery/' + file + '.html';
//alert(index);
	window.open(index, 'Gallery', 'width=400,height=350');
}
	
function newWindowLarge (file) {

var index = 'gallery/' + file + '.html';
//alert(index);
	window.open(index, 'Gallery', 'width=370,height=450');
	}

//preload images
if (document.images) {
		home_propertyon = new Image();
    home_propertyon.src = "http://www.thegreatoceanroad.com.au/images/home_property_on.gif";
    home_propertyoff = new Image();
    home_propertyoff.src = "http://www.thegreatoceanroad.com.au/images/home_property_off.gif";
		
		home_facilitieson = new Image();
    home_facilitieson.src = "http://www.thegreatoceanroad.com.au/images/home_facilities_on.gif";
    home_facilitiesoff = new Image();
    home_facilitiesoff.src = "http://www.thegreatoceanroad.com.au/images/home_facilities_off.gif";
		
		home_thingstodoon = new Image();
    home_thingstodoon.src = "http://www.thegreatoceanroad.com.au/images/home_thingstodo_on.gif";
    home_thingstodooff = new Image();
    home_thingstodooff.src = "http://www.thegreatoceanroad.com.au/images/home_thingstodo_off.gif";
		
		home_bookingson = new Image();
    home_bookingson.src = "http://www.thegreatoceanroad.com.au/images/home_bookings_on.gif";
    home_bookingsoff = new Image();
    home_bookingsoff.src = "http://www.thegreatoceanroad.com.au/images/home_bookings_off.gif";
		
		nav_homeon = new Image();
    nav_homeon.src = "http://www.thegreatoceanroad.com.au/images/nav_home_on.gif";
    nav_homeoff = new Image();
    nav_homeoff.src = "http://www.thegreatoceanroad.com.au/images/nav_home_off.gif";
		
		nav_propertyon = new Image();
    nav_propertyon.src = "http://www.thegreatoceanroad.com.au/images/nav_property_on.gif";
    nav_propertyoff = new Image();
    nav_propertyoff.src = "http://www.thegreatoceanroad.com.au/images/nav_property_off.gif";
		
		nav_facilitieson = new Image();
    nav_facilitieson.src = "http://www.thegreatoceanroad.com.au/images/nav_facilities_on.gif";
    nav_facilitiesoff = new Image();
    nav_facilitiesoff.src = "http://www.thegreatoceanroad.com.au/images/nav_facilities_off.gif";
		
		nav_thingstodoon = new Image();
    nav_thingstodoon.src = "http://www.thegreatoceanroad.com.au/images/nav_thingstodo_on.gif";
    nav_thingstodooff = new Image();
    nav_thingstodooff.src = "http://www.thegreatoceanroad.com.au/images/nav_thingstodo_off.gif";
		
		nav_bookingson = new Image();
    nav_bookingson.src = "http://www.thegreatoceanroad.com.au/images/nav_bookings_on.gif";
    nav_bookingsoff = new Image();
    nav_bookingsoff.src = "http://www.thegreatoceanroad.com.au/images/nav_bookings_off.gif";
		
		
	}


//background swap
function backgroundSwap(path) {
	
	if (browser.isNS40x || browser.isNS47x) {
		return;
	} else if (browser.isNS6up) {
		top.document.body.background = 'images/spacer.gif';
	} else {
		top.navTable.background = path;
		//alert(path);
	}
}


// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}


// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
         }
}

