function showLinkToThisPagePop(){
    var new_win = window.open("","LinkToThisPagePopup","url=no,addressbar=no,locationbar=no,menubar=no,resizable=no,width=500,height=207");
    new_win.document.write("<p>Link to the selected page! Just copy and paste the following HTML code into your website pages:<br /><textarea rows=7 onclick='this.select();' style='width:100%'><a href='"+location.href+"'>"+(document.title=="" ? location.href : document.title)+"</a></textarea><button onclick='window.close();'>Close This Window</button><br/><br/></p>");
    new_win.document.title = "Link to: "+location.href;
}

document.write("<a href='#' onclick='showLinkToThisPagePop(); return false;'>Link to this page</a>");
