function showTutorialHelper(tipo){
    var body=document.getElementsByTagName("body")[0];
    body.className ="yui-skin-sam";
    var modo = "tutorialusoges.swf";
    var width=1025;
    var height=600;
    if( tipo == "professor") {
        modo = "rutinaCate.swf";
        width=680;
            height=468;
    }
    if (!YAHOO.tutorial.container.wait) {
        
        // Initialize the temporary Panel to display while waiting for external content to load
        YAHOO.tutorial.container.wait =
            new YAHOO.widget.Panel("wait",
                { fixedcenter:false,
                  close:false,
                  x:50, y:20,
                  draggable:false,
                  zindex:4,
                  modal:true,
                  visible:true
                }
                                   );
        
        YAHOO.tutorial.container.wait.setHeader("<div style='text-align:right'><a href=\"javascript:YAHOO.tutorial.container.wait.hide();\">X</a></div>");
        YAHOO.tutorial.container.wait.setBody("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/c\
abs/flash/swflash.cab#version=7,0,19,0\" width='"+width+"' height='"+height+"' title=\"Uso GES\">" +
                                              "<param name=\"movie\" value=\"/resources/theme-ges/Selva/tutorial/"+modo+"\" />" +
                                              "<param name=\"quality\" value=\"high\" />" +
                                              "<embed src=\"/resources/theme-ges/Selva/tutorial/"+modo+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"app\
lication/x-shockwave-flash\" width='"+width+"' height='"+height+"'></embed>" +
                                              "</object>");
        
        YAHOO.tutorial.container.wait.render(document.body);
    }
    YAHOO.tutorial.container.wait.show();
    
}

