window.onload = function(){
    Shadowbox.init();
}
function newwin(wname)
{
window.open(wname,
"preWin",
"status=no,"+
"toolbar=no,"+
"resizable=no,"+
"scrollbars=no,no"+
"locationbar=no,"+
"menubar=no,"+
"width=100,"+
"height=100,"+
"left=0,"+
"top=0,"+
"screenX=0,"+
"screenY=0");
}
function newwin2(wname)
{
window.open(wname,
"preWin",
"status=no,"+
"toolbar=no,"+
"resizable=no,"+
"scrollbars=yes,yes"+
"locationbar=no,"+
"menubar=no,"+
"width=100,"+
"height=100,"+
"left=0,"+
"top=0,"+
"screenX=0,"+
"screenY=0");
}
function show_log() {
	document.getElementById('show_log_div').style.visibility = 'visible';
}
function zeige(said) {
	document.getElementById('div1').style.visibility = 'visible';
	new Ajax.Updater('container1', 'show.php?aid='+said ); // Zeige Bild von ausgewähltem Spiel
	document.getElementById('aid').value = said; // übergebe GruppenID in verstecktes Feld
}
function zeige2(said) {
	document.getElementById('div1').style.visibility = 'visible';
	new Ajax.Updater('container1', 'show2.php?aid='+said ); // Zeige Bild von ausgewähltem Spiel
	document.getElementById('aid').value = said; // übergebe GruppenID in verstecktes Feld
}
function zeige3(said) {
	document.getElementById('div1').style.visibility = 'visible';
	new Ajax.Updater('container1', 'show3.php?aid='+said ); // Zeige Bild von ausgewähltem Spiel
	document.getElementById('aid').value = said; // übergebe GruppenID in verstecktes Feld
}
// Versteckt Uploader wieder
function verstecke1() {
	document.getElementById('div1').style.visibility = 'hidden';
}
// Ändere Bild aus Lister heraus
function wechsle1(bild) {
	new Ajax.Updater('container1', 'show.php?bid='+bild );
}
function wechsle2(bild) {
	new Ajax.Updater('container1', 'show2.php?bid='+bild );
}
function wechsle3(bild) {
	new Ajax.Updater('container1', 'show3.php?bid='+bild );
}

