﻿function Embed(code) {
    document.writeln(code);
}
function PopUpAbrir(url, w, h) {
    var xpos = (screen.width / 2) - (850 / 2);
    var ypos = (screen.height / 2) - (700 / 2);
    var Property = 'top=' + ypos + ',left=' + xpos + ',width=' + w + ',height=' + h + ',menubar=no,toolbar=no,scrollbars=yes';
    window.open(url, 'popPupView', Property);
}
function ShareIt(tipo, titular) {
    var url = window.location.href;
    var dest = "";
    switch (tipo) {
        case "facebook":
            dest = "http://www.facebook.com/sharer.php?u=" + encodeURIComponent(url) + "&t=" + encodeURIComponent(titular);
            break;
        case "twitter":
            dest = "http://twitter.com/home?status=" + escape(titular) + " " + escape(url);
            break;
        case "delicious":
            dest = "http://del.icio.us/post?url=" + escape(url) + "&title=" + escape(titular);
            break;
    }
    window.open(dest);
}
