// JavaScript Document

	var FixedImgURL;
	 
	function HoverImage(strURL){ 
		document.getElementById('mainImageD').setAttribute('src',strURL);
	}
	
	function SetFixed(strURL){ 
		//document.getElementById('mainImageD').setAttribute('src',strURL) 
		FixedImgURL = strURL;
	}
	
	function Restore()
	{
		document.getElementById('mainImageD').setAttribute('src',FixedImgURL);
	}

	function ImagePop(URL) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=205,height=150,');");
	}
	
	function WeatherPop() {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open('http://www.bergfex.com/hopfgarten/wetter/', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=770,height=550,');");
	}
	
	function PistePop(URL) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=0,width=770,height=510,');");
	}
	 