{

function ConfirmLink(mylink)
{
// alert("Hello");
var agree = confirm("You are about to leave LittleBlackBagMedical.com, and go to '" + mylink.toString() + "'.\n\nAre you sure you want to continue?");
if(agree)
{
	window.location=mylink;
}

return;
}

}