

function play_song(that)
{
	w=window.open(that.href,
		'Playing',
		'width=300,height=100,location=no,status=no,toolbar=no,menubar=no');
	w.focus();
	//w.document.titel='Playing Sound Sample';
}


function index_promo_bildwahl(b)
{
	document.images['bild_mittelgross'].src=b.src.substr(0,b.src.length-7)+"200.jpg";
}

function open_image_window(a)
{
	w=window.open('about:blank','kunabildhier','menubar=no;toolbar=no,width=400,height=400');
	html="<html><head><title>Fotogalerie Künstlernacht 2006</title>"
	+"</head>"
	+"<body id='main' onload=\"document.getElementById('main').style.margin='0'; "
	+"if (document.getElementById('mainimg').width==600) window.resizeTo(605,430); "
	+"else window.resizeTo(405,630); "
	+"if (document.getElementById('mainimg').width==0) window.resizeTo(605,630);\">"
	+"<img id='mainimg' src='"
	+a
	+"'></body></html>";
	w.document.write(html);
	w.document.close();		
	w.focus();
}

