<!--



var obj = null;

var thePics = new Array();



//FLASH SNIFF

var useFlash = false;



if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ) {

// Check for Flash version 5 or greater in Netscape

var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;

//alert(plugin);

//alert(parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)));

if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1))>=5)

	useFlash = true;

} else if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&

  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {

	// Assume any Windows IE except for Windows 3.1 supports the OBJECT tag

	useFlash = true;

}



//BROWSER SNIFF

var isIE4 = (document.all && !document.getElementById) ? true : false;

var isIE5 = (document.all && document.getElementById) ? true : false;

var isNS6 = (!document.all && document.getElementById) ? true : false;

var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

var isDHTML = (isIE5 || isIE6 || isNS6);

var isPc = navigator.userAgent.indexOf("Windows") != -1;

var isMac = !isPc;





//redirect on NS4

if(!isDHTML) {

	document.location.replace('oldbrowser.htm');

}





//FUNCTIONS



function swap(name,state) {

    if(thePics[name+state] && thePics[name+state].complete) {

        document.images[name].src = thePics[name+state].src;

    }

}



function preloadPics(thePics) {

	for (i=0;i<thePics.length;i++){

		thePics[thePics[i]] = new Image();

		thePics[thePics[i]].src = 'images/'+thePics[i]+'.gif';

		thePics[thePics[i]+'_over'] = new Image();

		thePics[thePics[i]+'_over'].src = 'images/'+thePics[i]+'_over.gif';

	}

}



function getFlash(flash,width,height,bgcolor) {

	var html = '';

	if(useFlash) {

		html = html + '<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" WIDTH=' + width + ' HEIGHT=' + height + '>';

		html = html + '<PARAM NAME=movie VALUE=\"' + flash + '\"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#' + bgcolor + '>';

		html = html + '<EMBED src=\"' + flash + '\" quality=high bgcolor=#' + bgcolor + ' WIDTH=' + width + ' HEIGHT=' + height + ' TYPE="application/x-shockwave-flash" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">';

		html = html + '</EMBED></OBJECT>';

	} else {

		html = '';

		if(flash=='intro_040721.swf')	html = html + '<img src="images/pic_intro.jpg" alt="" width="754" height="433" border="0" style="border: 2px solid #ffffff;"><br>';
		else if(flash=='activities.swf')	html = html + '<img src="images/pic_activities_1.jpg" alt="" width="377" height="289" border="0"><br>';
		else if(flash=='breakfast.swf')	html = html + '<img src="images/pic_breakfast_1.jpg" alt="" width="377" height="289" border="0"><br>';
	}

	return html;

}





function popup(location) {

	var dx=780;

	var dy=320;



	var w = window.open(location, 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=no,toolbar=no');

	w.focus();

}





function checkAvail(room) {

	opener.location = 'checkavail.htm';

	opener.focus();

}

function popDown(location) {
	if(!window.opener.closed) {
		window.opener.location = location;
		window.opener.focus();
	} else {
		var ww = window.open(location);
		ww.focus();
	}
}

function getHeader() {
	var suffixes = ["win","ss","fall"];
	var suffix = suffixes[0];
	//date ranges for switch
	var months = [3,8,11];
	var dates = [31,15,15];
	
	//today
	var today = new Date();
	var month = today.getMonth() + 1;
	var date = today.getDate();
	
	//find range
	if(month<months[0] || (month==months[0] && date<dates[0])) {
		suffix = suffixes[0];
	} else
	if(month<months[1] || (month==months[1] && date<dates[1])) {
		suffix = suffixes[1];
	} else
	if(month<months[2] || (month==months[2] && date<dates[2])) {
		suffix = suffixes[2];
	} else {
		suffix = suffixes[0];
	}
	
	var html = '<img src="http://www.deerhillinn.com/images/toppic_' + suffix + '.jpg" width="755" height="143" border="0" usemap="#header"><br>';
	return html;
}
	

function signup() {
	var dx=440;
	var dy=260;

	var w = window.open('http://ccprod.roving.com/roving/d.jsp?m=1011336102089&p=oi', 'dir', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}



//-->

