//
// show_user.js
//
var conf = new Object();
conf.userId = 0;
conf.panelWidth = 160;
conf.panelHeight = 195;
conf.panelBorder = 0;
conf.panelScrolling = "no";

function loadConf()
{
    if ( this.mh_user_id )
    {
        conf.userId = this.mh_user_id;
    }
    if ( this.mh_panel_width )
    {
        conf.panelWidth = this.mh_panel_width;
    }
    if ( this.mh_panel_height )
    {
        conf.panelHeight = this.mh_panel_height;
    }
    if ( this.mh_panel_border )
    {
        conf.panelBorder = this.mh_panel_border;
    }
}

function display()
{
    var jspPath = "http://www.musichawk.com/mh/do/ext/showUser?oid=" + conf.userId;
    document.write('<iframe src="' + jspPath + '" width="' + conf.panelWidth + '" height="' + conf.panelHeight + '" frameborder="' + conf.panelBorder + '" marginheight="0" marginwidth="0" scrolling="' + conf.panelScrolling + '" style="border: 1px solid gray">Your browser does not support this feature of MusicHawk.</iframe>');
}

loadConf();
display();