function OnBookmark(url, description) {
    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(description, url, "");
    } else if (window.external) { // IE Favorite
        window.external.AddFavorite(url, description);
    }
    else {
        alert("Your browser does not support this function!");
    }
}

function OnPrint() {
    if (window.print) {
        window.print();
    }
    else {
        alert("Your browser does not support this function!");
    }
}

/*
function CreateContact(secondpart, first)
{
var a = "<a href=\"";
var b = "ma" + "il" + "to" + ":";
var c = "\">";
var d = first + "&#64;";
document.write(a + b + first + "&#64;" + secondpart+ c + d + secondpart + "</a>");
}

function OnSearch()
{
var oKeyword = document.getElementById("txtKeyword");
document.location.href = "PublicationSearchResults.aspx?Search=" + escape( oKeyword.value );
}

function OnWinLoad()
{											
if(typeof(OnWindowLoad) != "undefined")
{
OnWindowLoad();				
}								
}	
*/
