﻿var AboutMe = function() { }

AboutMe.LinkBook = function() {

    window.open("http://kangcom.com/common/bookinfo/bookinfo.asp?sku=" + window.event.srcElement.bookCode, "BookInfo");
}

AboutMe.ShowBook = function() {
    window.event.srcElement.style.cursor = "hand";
    $get("bookInfo").src = "/About/images/" + window.event.srcElement.bookCode + ".gif";
    $get("bookInfo").style.display = "";
}

AboutMe.showCareer = function() {
        $get("author").style.display = "none";
        $get("project").style.display = "none";
        $get("speaker").style.display = "none";

        if (window.event.srcElement.id == "authorTab")
            $get("author").style.display = "";
        else if (window.event.srcElement.id == "projectTab")
            $get("project").style.display = "";
        else if (window.event.srcElement.id == "speakerTab")
            $get("speaker").style.display = "";
    }

    

