
function goto(link)
{
	window.location.href = 'http://'+ window.location.host + link;
}

function option(id)
{
	if(document.getElementById(id).style.display == 'none') document.getElementById(id).style.display='block'; 
	else document.getElementById(id).style.display='none';
}

function chowaj(id)
{
	document.getElementById(id).style.display='none';
}

function pokaz(id)
{
	document.getElementById(id).style.display='block';
}

function usun_ogloszenie(id){
	var url = "/inc/ajax/usun_ogloszenie.php";
	var params = "id=" + id;
	startPOSTRequest(url, params, usun_ogloszenie_onComplete, usun_ogloszenie_onEnd);     
}

function usun_ogloszenie_onComplete(responseText, responseXML){
	alert('Twoje ogłoszenie zostało usunięte.');
	window.location.href = location;
}

function usun_ogloszenie_onEnd(){
}

