/**
* setting up current listing identifier 
* @param listingIdentifier string identifier of the listing
* @param redirectURL string redirection page address
*/
function setup_listing(listingIdentifier, redirectURL)
{
	$.post('ajax/setup_listing_identifier.php', {'listingIdentifier' : listingIdentifier}, debug);
	
	location.href = redirectURL;
}

function debug(transport)
{
	//alert(transport);	
}