function radio_input(url)
{
// Re-direct the browser to the url value
window.location.href = "http://" + url 
}

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}