function tubePress_normalPlayer(embed, width, title, desc) {
    document.getElementById('tubepress_mainvideo').innerHTML =
        '<div id="tubepress_inner" style="width: ' + width + 'px">' +
        decodeURIComponent(embed) + 
		'    <h1 id="tubepress_btitle">' + decodeURIComponent(title) + '</h1>' +
		'  <p>'+decodeURIComponent(desc)+'</p>';
}

function tubePress_popup(url, height, width) {
    window.open(url, "newwin",
        "toolbar=false," +
        "locationbar=false," +
        "directories=false," +
        "status=false," +
        "menubar=false," +
        "scrollbars=false," +
        "resizable=true," +
        "copyhistory=false," +
        "height=" + height + "," +
        "width=" + width
    );
}
