// JavaScript Document
function openPopup(){
window.open("","_popup","toolbars=0,location=0,width=650,height=500");
return true;
}
function getMetaDescription () {
  var metaElements = document.all ?
    document.all.tags('META') :
    document.getElementsByTagName ?
    document.getElementsByTagName ('META') : new Array();
  var metaKeywords = new Array();
  var i = 0;
  for (var m = 0; m < metaElements.length; m++)
    if (metaElements[m].name == 'description')
      metaKeywords[i++] = metaElements[m].content;
  return metaKeywords;
}
res ="<style>.IconOnly {width:16px;height:16px;border: none;background: url('http://www.gorushyeri.com/images/GYIcon.gif') no-repeat top right;}.IconOnly:hover{cursor:hand;}</style>"
res += "<div style=\" border-width:0px; \">"
res += "<form name=\"share\" action=\"http://www.gorushyeri.com/ShareNews\" method=\"post\" target=\"_popup\" onsubmit=\"return openPopup()\" /><input type=\"hidden\" name=\"url\" value=\" "
res += (location.href); 
res += "\" /><input type=\"hidden\" name=\"title\" value=\" "
res += (document.title); 
res += "\" /><input type=\"hidden\" name=\"decrept\" value=\" "
res += (getMetaDescription()); 
res += "\" /><input type=\"submit\" value=\"\" title=\"Share on Gorush Yeri\" class=\"IconOnly\" name=\"share\" /></form>"
document.write(res);
