function rezerwacjaStoiska( id )
{
	window.open('index.php?act=popups&sub=rezerwacja&id='+id,'reserve','toolbar=0, menubar=0, location=0, scrollbars=0, status=0, resizable=0,width=480,height=320');
	return;
}

function informacja( id )
{
	window.open('index.php?act=popups&sub=informacja&id='+id,'reserve','toolbar=0, menubar=0, location=0, scrollbars=0, status=0, resizable=0,width=480,height=320');
	return;
}

function addFirm()
{
	window.open('index.php?act=popups&sub=addfirm','reserve','toolbar=0, menubar=0, location=0, scrollbars=1, status=0, resizable=1,width=480,height=480');
	return;
}

function updateFirm()
{
	window.open('index.php?act=popups&sub=updatefirm','reserve','toolbar=0, menubar=0, location=0, scrollbars=1, status=0, resizable=1,width=480,height=480');
	return;
}

function clearForm()
{
	var input = document.getElementById('newsletterForm');
	if( input.value=='twój adres e-mail' )
	{
		input.value='';
	}
	else if( input.value=='your e-mail address' )
	{
		input.value='';
	}
}

function searchForm()
{
	var text = document.getElementById( 'find_back' ).value;
	var siteSearch = document.getElementById( 'siteSearch' );
	var archiveSearch = document.getElementById( 'archiveSearch' );
	var googleSearch = document.getElementById( 'googleSearch' );
	
	if( siteSearch.checked )
	{
		//location.href="index.php?act=search&query="+text+"&archive=false";
		window.open('index.php?act=search&query='+text+'&archive=false','google_'+text,'toolbar=0, menubar=0, location=0, scrollbars=1, status=1, resizable=1, width=500, height=325, left=20, top=0');
	}
	else if( archiveSearch.checked )
	{
		//location.href="index.php?act=search&query="+text+"&archive=true";
		window.open('index.php?act=search&query='+text+'&archive=true','google_'+text,'toolbar=0, menubar=0, location=0, scrollbars=1, status=1, resizable=1, width=500, height=325, left=20, top=0');
	}
	if( googleSearch.checked )
	{
		window.open('http://www.google.pl/search?hl=pl&q='+text,'google_'+text,'toolbar=1, menubar=1, location=1, scrollbars=1, status=1, resizable=1');
	}
	
	return false;
}