function anmeldung() 
{
	var anmeldung=window.open("","anmeldung","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=650,height=530");
	anmeldung.focus();
}

function news() 
{
	var news=window.open("","news","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=650,height=530");
	news.focus();
}

var checkFields = 'true';
function eintragen()
{
	var formular = document.Eingabe;
	for (i = 0; i < formular.elements.length; i++)
	{ 
		var myText = formular.elements[i].value;
		var verbotenerText = myText.search(/<scrip.+/);

		if(verbotenerText != -1)
		{
			alert("Javascript - Einträge sind nicht gestattet!");
			formular.elements[i].focus();
			return false;
		}
	}

	if(formular.bemerkung.value.length > 1024)
	{
		alert(formular.bemerkung.value.length);
		alert("Sie haben zu viele Zeichen (max. 1024) eingegeben.");
		formular.bemerkung.focus();
		return false;
	}
	
	if(checkFields == 'true')
	{
		if(checkForm()) {
			document.Eingabe.submit();
		}
	}
}

function check( group )
{
	var value = "" ;
	oneChecked = false ;
	for( i = 0; i < group.length; i++ )
	{
		if( group[i].checked )
		{
			oneChecked = true ;
			value = group[i].value ;
			break ;
		}
	}
	if( oneChecked )
	{
		return true;
	}
	else
	{
		return false;
	}
}


// Anmeldung Fenster
function windowAnmeldung() 
{
var anmeldung=window.open("","popup","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=450,height=500");
anmeldung.focus();
}

function newWindow() 
{
	var newWindow=window.open("","newWindow","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,width=400,height=352");
	newWindow.focus();
}

function windowNewsletter() 
{
var anmeldung=window.open("","newsletter","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=450,height=300");
anmeldung.focus();
}

function showReferenz(bild) 
{
	var refWindow = window.open("","team","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,dependent=1, width=500,height=400");
	with(refWindow.document)
	{
	open("text/html");
    writeln('<html><head><title>Unser Team</title><body bgcolor="#757575" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	writeln('<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0">');
	writeln('<tr><td align="center" valign="middle">');
	writeln('<table cellspacing="0" cellpadding="5" border="0"><tr><td bgcolor="#ffffff">');
	writeln('<img src="' +bild+ '" border=0>');
	writeln("</td></tr></table></td></tr></table>");
    writeln("</body></html>");
	close();
	}
	refWindow.focus()
}

//Bildergalerie
//---------------------------------------------------------------------------------------------------------------------------
//bilder vergroessern
function showBild2(verzeichniss, bild) 
{
	var refWindow = window.open("","referenzen","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,dependent=1, width=600,height=450");
	with(refWindow.document)
	{
	open("text/html");
    writeln('<html><head><title>Tanzschule Tanzen-und-Spass</title><body bgcolor="#757575" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	writeln('<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="1">');
	writeln('<tr><td align="center" valign="middle">');
	writeln('<table cellspacing="0" cellpadding="5" border="0"><tr><td bgcolor="#FFFFFF">');
	writeln('<img src="pix/'+verzeichniss+'' +bild+ '.jpg" border=0">');
	writeln("</td></tr></table></td></tr></table>");
    writeln("</body></html>");
	close();
	}
	refWindow.focus()
}

function votingWindow()
{
	var votingWindow=window.open("","popup","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=650,height=450");
	votingWindow.focus();
}

function newWindow() 
{
var newWindow=window.open("","newWindow","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,width=500,height=352");
newWindow.focus();
}

function spieleWindow() 
{
var spieleWindow=window.open("","spiele","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=530,height=340");
spieleWindow.focus();
}

function impressumWindow() 
{
var impressumWindow=window.open("","impressum","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=500");
impressumWindow.focus();
}

