// ***** Btn Rollover *****
function roll(imgName,imgState) {
	document.images[imgName].src = imgState
}
// ***********************************************************************

// ***** Preload Rollover Images ***************************************
if (document.images) {
	image1 = new Image(); image1.src = "http://www.grandepointeatinletbeach.com/images/nav/home_ON.gif";
	image2 = new Image(); image2.src = "http://www.grandepointeatinletbeach.com/images/nav/location_ON.gif";
	image3 = new Image(); image3.src = "http://www.grandepointeatinletbeach.com/images/nav/amenities_ON.gif";
	image4 = new Image(); image4.src = "http://www.grandepointeatinletbeach.com/images/nav/photos_ON.gif";
	image5 = new Image(); image5.src = "http://www.grandepointeatinletbeach.com/images/nav/availability_ON.gif";
	image6 = new Image(); image6.src = "http://www.grandepointeatinletbeach.com/images/nav/contact_us_ON.gif";
	image7 = new Image(); image7.src = "http://www.grandepointeatinletbeach.com/images/nav/helpful_links_ON.gif";
	
	image20 = new Image(); image20.src = "http://www.grandepointeatinletbeach.com/images/houses/the_craftsman_sm_ON.jpg";
	image21 = new Image(); image21.src = "http://www.grandepointeatinletbeach.com/images/houses/the_hightide_sm_ON.jpg";
	image22 = new Image(); image22.src = "http://www.grandepointeatinletbeach.com/images/houses/the_sawgrass_sm_ON.jpg";
	image23 = new Image(); image23.src = "http://www.grandepointeatinletbeach.com/images/houses/the_osprey_sm_ON.jpg";
	image24 = new Image(); image24.src = "http://www.grandepointeatinletbeach.com/images/houses/the_topsail_sm_ON.jpg";
	image25 = new Image(); image25.src = "http://www.grandepointeatinletbeach.com/images/houses/the_edgewater_sm_ON.jpg";
	image26 = new Image(); image26.src = "http://www.grandepointeatinletbeach.com/images/houses/sunset_gables_sm_ON.jpg";
	image27 = new Image(); image27.src = "http://www.grandepointeatinletbeach.com/images/houses/the_sandpiper_sm_ON.jpg";
	image28 = new Image(); image28.src = "http://www.grandepointeatinletbeach.com/images/houses/the_sweetbay_sm_ON.jpg";
	
	image100 = new Image(); image100.src = "http://www.grandepointeatinletbeach.com/images/spacer.gif";
}
// *********************************************************************

// *********************************************************************
// Function to create pop-up windows at a custom size.
// w = width
// h = height
// d = directories
// l = location
// m = menubar
// r = resizeable
// sc = scrollbars
// st = status
// t = toolbar
// EXAMPLE CALL: <a href="javascript:popUp('[URL]','[WINDOW NAME]',400,300,1,1,0,0,0,0,0);">LINK</a>
// *********************************************************************
function popUp(URL,name,w,h,d,l,m,r,sc,st,t) {
	var featureStr = "";
	featureStr = "width=" + w + ",height=" + h + ",directories=" + d + ",location=" + l + ",menubar=" + m + ",resizable=" + r + ",scrollbars=" + sc + ",status=" + st + ",toolbar=" + t;
	window.open(URL,name,featureStr);
}
