function popupWindow(siteHref){
    window.open(siteHref, '', 'toolbar=0,status=0,location=0, scrollbars=yes,resizable=no,width=600,height=530');
}

function getUrl(url){
    window.location = url;
    return false;
}

function search(){
    var searchForm = document.getElementById('searchForm');
    
    
    if (searchForm) {
        searchForm.submit();
    }
}
