// Use with recapURL obtained at http://mailhide.recaptcha.net/
// Usage: <a href="recapURL" onclick="showRecap('recapURL'); return false;" title="Reveal email address">TEXT</a>
// Note: be sure any & in recapURL is encoded as &amp;
//
function showRecap(recapURL)
{
	window.open(recapURL, "", "width=500,height=300")
}

