// JavaScript Document

		function win_abstimmen(content)
			{
  			var win = new Window({className: "alphacube", title: "Umfrage: Abstimmung", width:300, height:400}); 
  			win.getContent().innerHTML = content;

  			win.setDestroyOnClose(); 
  			win.showCenter();
  			win.setConstraint(true, {left:0, right:0, top: 30, bottom:10})
  			win.toFront();
			}


		function win_ergebnis()
			{
  			var win = new Window({className: "alphacube", title: "Umfrage: Ergebnis", width:300, height:400}); 
  			win.getContent().innerHTML = "PHP Include <?php include('inner.html')?>"; 

  			win.setDestroyOnClose(); 
  			win.showCenter();
  			win.setConstraint(true, {left:0, right:0, top: 30, bottom:10})
  			win.toFront();
			}

