var arrImages;
var nImagecount;

if(document.images)
{
	arrImages=new Object();
	nImagecount=0;
}

function change(foto,name,adresse)
{
	if(document.images)
	{
		if(document.images["hallenfoto"]) document.images["hallenfoto"].src="fileadmin/vorlagen/sporthallen/"+foto+"_tn.jpg";
		document.sporthalleninfo.pos_name.value=name;
		document.sporthalleninfo.pos_adresse.value=adresse;
	}
}



function kill()
{
	if(document.images)
	{
		if(document.images["hallenfoto"]) document.images["hallenfoto"].src="fileadmin/vorlagen/sporthallen/blank.gif";
		document.sporthalleninfo.pos_name.value="";
		document.sporthalleninfo.pos_adresse.value="";
	}
}




