function goRedirect( url )
{
	window.location = url;
}

function hidePopupAdvert()
{
	$("#userLoading").hide();
}

function showPopupAdvert( data )
{
	$("#userLoading").show();

	// Redirect to a link or submit a form as appropriate
	//
	if ( data['type'] == "click" )
	{
		linkUrl = data['currentTarget']['href'];
					
		$("#advertDiv").load("/ajax/rotateAdvert/SearchPopup", function() {
			setTimeout( "goRedirect('" + linkUrl + "')", 1000 );
			setTimeout( "hidePopupAdvert()", 10000 );
		});
	}
	else if ( data['type'] == "submit" )
	{
		formEl = data['currentTarget'];

		$("#advertDiv").load("/ajax/rotateAdvert/SearchPopup", function() {
			setTimeout( "formEl.submit()", 1000 );
			setTimeout( "hidePopupAdvert()", 10000 );
		});
	}
	
	return false;
}

