function hideimagediv() {
	document.getElementById('imagecontainer').style.display='none';
}


function showmapdiv() {
	document.getElementById('mapcontainer').style.display='';
}

function hidemapdiv() {
	document.getElementById('mapcontainer').style.display='none';
	//if (document.getElementById("location")) document.getElementById("location").style.display="";
}




function switchimage(which) {
	var ihandler= new Ajax;
	ihandler.url='http://www.schoell-bau.at/incs/switchimage.php';
	ihandler.params="which="+which+"&actual="+document.getElementById('actpic').value;
	ihandler.onSuccess=successHandler;
	ihandler.onError=errorHandler;
	ihandler.doRequest();
}

function errorHandler(msg) {
}


function successHandler(txt, xml) {
var temp=txt.split("###");
eval ("document.getElementById('actpic').value='"+temp[0]+"';");
eval ("document.getElementById('biggerpic').innerHTML='"+temp[1]+"';");
}





function showbigpic() {
	var i2handler= new Ajax;
	i2handler.url='http://www.schoell-bau.at/incs/showimage.php';
	i2handler.params="which="+document.getElementById('actpic').value;
	i2handler.onSuccess=successHandler2;
	i2handler.onError=errorHandler2;
	i2handler.doRequest();
}

function errorHandler2(msg) {
}


function successHandler2(txt, xml) {
	document.getElementById('imagecontainer').style.display='';
	document.getElementById('imagediv').innerHTML=txt;
	//if (document.getElementById("location")) document.getElementById("location").style.display="none";
	}





