function sendPage(url) {
	var aWindow = window.open('sendPage.asp?url=' + url, '', 'WIDTH=320,HEIGHT=170');
	aWindow.moveTo((screen.width - 320) / 2, (screen.height - 170) / 2);
}

function viewSnowReport() {
	var resort = '';
	
	try {
		if (document.all('lstResorts')) {
			resort = document.all('lstResorts').options[document.all('lstResorts').selectedIndex].text;
		}
		
		if (resort!='') {
			var pos = resort.indexOf(' > ');
			if (pos > 0) {
				resort = resort.substr(pos+3, resort.length);
			}
			
			window.location = 'snowreports.asp#'+resort;
		}
	} catch(e) {
		alert('Your browser does not support this function. Please use a modern browser such as Internet Explorer (recommended) or FireFox');
	}
}