//duze zdjecie w nowym okienku
function zdjecie(file, x, y)
{
	var left, top;//, x, y;
	//x = 800;
	//y = 600;
	left = Math.round((screen.width - x) / 2);
	top = Math.round((screen.height - y) / 2);
	window.open('zdjecie.php?z='+file, 'nazwa','width='+x+', height='+y+', top='+top+', left='+left+', resizable=no, scrollbars=no, menubar=no, status=no').focus();	
}
//walidacja formularza dodawania ogloszenia (-4 bo bez zdjec i submita:))
function test_form()
{
	var form = document.forms['formularz'];
	var puste = false;
	for (i = 0; i < form.elements.length-4; i++)
	{
   	if( form.elements[i].value == '' )
			puste = true;
  }
	if( puste )
	{
		alert('Musisz wypełnić wszystkie pola formularza oznaczone *!');
		return false;
	}
	else
	{
   	return true;
	}
}
//*********************************************************************
function test_tekstarea()
{
	var form 		= document.forms['formularz'];
	var tresc 		= document.forms['formularz'].elements['tresc'];
	var licznik 	= document.getElementById('licznik');
	var maxLength 	= 300;
	
	if( tresc.value.length >= maxLength )
		tresc.value = tresc.value.substr(0, maxLength);
	var tekst = "Wprowadzono "+tresc.value.length+" z "+maxLength+" znaków";
	licznik.innerHTML = tekst;
	
	return true;
}
//*********************************************************************