// JavaScript Document
function Get(ID){
	return document.getElementById(ID);
}
function SetGallery(ID){
	/*
	for(F=0; F<Gallery.length; F++){
		PreviewRef = Get('Preview' + F);
		if(F == ID) PreviewRef.className = 'Hide';
		else PreviewRef.className = '';
	}
	*/
	
	Get('GalleryImage').src = Gallery[ID][1];
}
function Print(URL){
	var PrintWindow;
	PrintWindow = window.open(URL, 'PrintWindow', 'width=840, height=600, scrollbars=yes');
}
function Send(URL){
	document.location.href='mailto:?subject=Seiten-Empfehlung: Zimmer Austria - Energietechnik&body=Hallo, folgende Seite kann ich weiterempfehlen:%0A' + document.title + " (Adresse: " + URL + ")";
}

function makegray(object)
{
	object.style.backgroundColor="#f0f0f0";
}

function makenormal(object)
{
	object.style.backgroundColor="#FFFFFF";
}
