function doExternalLinkSpeedbump(title, url) {
	var req = new Ajax.Request('/speedbump/speedbump_standard.php',{
                method:'get',
                onSuccess:function(response) {
			html = response.responseText;

			$('dynamicbase').innerHTML=html;
			$('targetlink').innerHTML="Click to Proceed to: " + title;
			$('targetlink').href=url;
			hideSelect();
			Effect.toggle('speedbump','appear');
		}
	});
}


function clearPopup(div) {
	Effect.toggle(div,'appear');
	unhideSelect();
}

function hideSelect()
{if (document.all){
document.all.formselect.style.visibility="hidden";
document.all.formselect2.style.visibility="hidden";
}}

function unhideSelect()
{if (document.all){
document.all.formselect.style.visibility="visible";
document.all.formselect2.style.visibility="visible";
}}

