/* Copyright - TelePronto */

/* newWindow to make a PopUp Window with specified url, titel, width and height */
/* Settings: 
	Status=no or yes -> Show the Browser Status Bar
	Scrollbars=no or yes -> Show's vertical and horicontal Scrollbar's
	Resizeable=no or yes -> Allow to resize the PopUp Window with the mouse cursor (in Firefox and Safari the standard is resizable)
*/
function newWindow (url, titel)
{
 fenster = window.open(url, titel, "width=650,height=700,status=no,scrollbars=yes,resizable=no");
 fenster.focus();
}


// Bild uploaden
function init(imgID) {
	//document.getElementById('file_upload_form1').onsubmit=function()
	//{
		document.getElementById('file_upload_form' + imgID).target = 'upload_target' + imgID;
		
		document.getElementById('loadersuc' + imgID).style.display = 'none';	
		document.getElementById('loaderimg' + imgID).style.display = 'block';
		document.getElementById('loadertxt' + imgID).style.display = 'block';
		document.getElementById('loaderform' + imgID).style.display = 'none';		
	//}
}
//window.onload=init;

function sendform()
{
	if (document.getElementById('form_agb').checked == true)
	{
		document.getElementById('upload').submit();
	}
	else
	{
		alert("Du musst unsere AGB's akzeptieren!");
	}
}
