
<!--
var type = " "; //G, A

window.onload = function(){
	if(type == "A"){
		Ausverkauft();
	}
	else if(type == "G"){
		SehrGefragt();
	}
}


function Ausverkauft(){
popwin=window.open("","",config='height=120,width=300')
popwin.document.open()
popwin.document.write('<title>Ausverkauft!</title><body onLoad="setTimeout(window.close, 10000)"><p align="center"><font face="Arial" color="#ff6820" size="6">Dieses Konzert  ist<br />leider ausverkauft!</font><br /><font color="#000000" size="2">Diese Meldung verschwindet nach 10 Sekunden</font> </p></body>')
popwin.document.close()
} //  End -->
<!-- Begin
function SehrGefragt(){
popwin=window.open("","",config='height=200,width=300')
popwin.document.open()
popwin.document.write('<title>Sehr gefragt</title><body onLoad="setTimeout(window.close, 10000)"><P align="center"><font face="Arial" color="#ff6820" size="6">'+
'Dieses Konzert  ist<br />sehr gefragt!  Bitte<br />reservieren Sie bald!</font>'+
'</font><br /><font color="#000000" size="2">Diese Meldung verschwindet nach 10 Sekunden</font> </p></body>')
popwin.document.close()
} //  End -->

