function printit(){  
if (window.print) {
    window.print() ;  
} else {
    var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
    WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box    WebBrowser1.outerHTML = "";  
}
}

var pageName = "MIO";
var urlAddress = 'http://www.musicindustryonline.info/'; 
function addToFavorites() 
{ 
if (window.external) { 
window.external.AddFavorite(urlAddress,pageName); 
} 
else { 
alert("Sorry! Your browser doesn't support this function."); 
} }


function makeBMark(title,url)
{
    if (window.sidebar)
    {
        window.sidebar.addPanel(title, url,"");
        //alert("Firefox users: After you bookmark the link, right click on the link. \nChoose 'Properties' and then uncheck the box next to 'Load This Bookmark in the Sidebar'.\n Firefox defaults bookmarks to open in the Sidebar rather than the main browser window.");


    } else if( window.opera && window.print )
    {
    	 
    //alert("Opera users: By Default this link will open in your Sidebar\nrather than the main page!\nTo prevent this please uncheck the box marked\n'Show in Panel' that appears on the Add Bookmark window\n");
    var mbm = document.createElement('a');
    mbm.setAttribute('rel','sidebar');
    mbm.setAttribute('href',url);
    mbm.setAttribute('title',title);
    mbm.click();
    } else if( document.all )
    {
    window.external.AddFavorite( url, title);
    }
}
