
$(document).ready(function() {
    // enable the log
    //dbug.enable();
    dbug.disable();
    
    firstloadIndex();
});


function firstloadIndex()
{
    dbug.log("index.js, firstloadIndex()");
}

function setMyMain(theUrl) {
    var flash='<object id="myObject" data="'+theUrl+'" type="text/html" width="100%" height="100%">';
    flash+='alt : <a id="myObjectRef" href="'+theUrl+'">'+theUrl+'</a></object>';
    document.getElementById("myMain").innerHTML=flash;
}

function goGoogle() {
    window.open("http://www.google.com");
    $("#myFooter").append("<b>,goGoogle()</b>");
}
