
function MioSportSearch() {

    if (document.getElementById('tSearch').value.length > 0) {
        document.getElementById('q').value = document.getElementById('tSearch').value;         
        document.getElementById('cse-search-box').submit();
    }
}

function MioSportKeyEnter() {

     if (window.event && window.event.keyCode == 13) {
        MioSportSearch();
     }
}

function MioSportSendLink() {
    top.location.href='SendLink.aspx?url=' + top.location.href;
}

function MioSportPrintPage() {
    window.print();
}

function MioSportBookmark(){

    title = 'MioSport.it';
    url = top.location.href;
    
    if (window.sidebar)
	    window.sidebar.addPanel(title, url, '');
    else if(window.opera && window.print) {
	    var elem = document.createElement('a');
	    elem.setAttribute('href',url);
	    elem.setAttribute('title',title);
	    elem.setAttribute('rel','sidebar');
	    elem.click();
    } 
    else if(document.all)
	    window.external.AddFavorite(url, title);
}
