
function escape2(sStr) {
	return escape(sStr).replace(/\+/g, '%2B').replace(/\"/g,'%22').replace(/\'/g, '%27').replace(/\//g, '%2F');
}

function JumpToSniper(showStep)
{
	if (!showStep) showStep = 0;
	var auction = Trim(VALUE('AuctionUrl'));
	if (!auction) {
		alert('Podaj adres lub numer aukcji');
		FOCUS('AuctionUrl');
		return false;
	}
	location.href = '/sniper/add/?s=' + showStep + '&a=' + escape2(auction);
}

function JumpToReminder(showStep)
{
	if (!showStep) showStep = 0;
	var auction = Trim(VALUE('AuctionUrl'));
	if (!auction) {
		alert('Podaj adres lub numer aukcji');
		FOCUS('AuctionUrl');
		return false;
	}
	location.href = '/reminder/add/?s=' + showStep + '&a=' + escape2(auction);
}

function JumpToFeedback()
{
	var seller = VALUE('SellerName');
	var server = VALUE('ServerName');
	if (seller.indexOf('http://') == 0) {
		location.href = '/feedback/urladd/?url=' + escape2(seller);
	} else {
		location.href = '/' + server + '/' + seller + '/';
	}
}