var nav_img = new Array();
function btn_on(id) { document.getElementById(id).src = nav_img[id+'-o'].src; }
function btn_off(id){ document.getElementById(id).src = nav_img[id+''].src;      }

//Preload Menu
function btn_preload() {
	images = new Array('r0','r1','r2','r3','r4','r5','r6','r7');
	path = 'http://fairwaycottages.com/images/';
	for (n=0; n<images.length; n++){
		nav_img[images[n]+''] = new Image; nav_img[images[n]+''].src = path+images[n]+'.gif';
		nav_img[images[n]+'-o'] = new Image; nav_img[images[n]+'-o'].src = path+images[n]+'-o.gif';
	}
}

btn_preload();

var newwin;
function launchwin(winurl,winname,w,h)
{
    //This launches a new window and then
    //focuses it if window.focus() is supported.
    var wint = (screen.height - h) / 2;
	var winl = (screen.width - w) / 2;
    winfeatures = 'height='+h+',width='+w+',top='+wint+',left='+winl+'status=0';
    newwin = window.open(winurl,'Fairmont',winfeatures);
}

function popup(aURL,windName,w,h) {
pop=window.open(aURL,windName,"width="+w+", height="+h+",screenX=0, screenY=0, left=0, top=0, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1");
}