function zmien_fote ( fotka, tytul ) 
{

	//document.getElementById('glowna_fota').innerHTML = "<a href=\"photos/"+fotka+"\" class=\"lightwindow page-options\" title=\"\" author=\"\" caption=\"\" rel=\"Galeria["+tytul+"]\"><img src=\"resize.php?photo_id=photos/"+fotka+"&type=3\"  alt=\" \" class=\"prodPhoto\"/></a>"
	
	document.getElementById('glowna_fota').innerHTML = "<img src=\"resize.php?photo_id=photos/"+fotka+"&type=3\"  alt=\" \" class=\"prodPhoto\"/>"

}

    
function openClose ( id )
{
      if ( document.getElementById(id).style.display == 'none')
      {
          document.getElementById(id).style.display = 'block';
      } else {
          document.getElementById(id).style.display = 'none';
      }
}

function confirmation( link, about)
{
  var answer = confirm(about);
  
	if (answer){
		window.location = link;
	} 

}

function enableField() {

  if ( document.getElementById('order').disabled == false)
	   document.getElementById('order').disabled=true;
	else
	   document.getElementById('order').disabled=false;
	   
}

function redsort()
{
  var link = document.getElementById('url').value;

  if ( document.getElementById('pag').value != '' )
    link = link + ',s,' + document.getElementById('pag').value;
 
  if ( document.getElementById('order').value != '' )
    link = link + ',o,' + document.getElementById('order').value;

window.location.href = link;

 
  

}