function popUp(URL, width, height, content) {
    day = new Date();
    id = day.getTime();
    eval("var newWindow = window.open('', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,titlebar=0,menubar=0,resizable=0,width="+width+",height="+height+",left = 50,top = 50');");
    newWindow.document.open();
    newWindow.document.write('<html>');
    newWindow.document.write('<head>');
    newWindow.document.write('<title>Florbela Mendes - Nutricionista</title>');
    newWindow.document.write('<link rel="stylesheet" href="florbelamendes.css">');
    newWindow.document.write('</head>');
    newWindow.document.write('<body class="popUp">');
    newWindow.document.write('<p align="center"><a href="javascript:window.print();"><img alt="Imprimir..." border="1" src="images/print_page.gif"></a></p>');
    newWindow.document.write(content.innerHTML);
    newWindow.document.write('</body>');
    newWindow.document.write('</html>');
    newWindow.document.close();
}

function sendToFriend(URL) {
    replacedURL = URL.replace("pozzetti.servebeer.com/florbelamendes","www.florbelamendes.net");
    
    location.href="mailto:?body=" + escape(replacedURL) + "&subject=FLORBELAMENDES.NET - Um(a) amigo(a) enviou-lhe um artigo!";
}

