<!--  
function share_it(pic_url,url,title,content,counter,web_url){ 
  var temp="<table style='border: 1px solid #CCCCCC;' bgcolor='FFFFFF' width='95%' border='0' cellspacing='3' cellpadding='3'>";
      temp+="<form name='FORM' action=";
      temp+=web_url;
      temp+=" method=POST>";
      temp+="<tr><td align=left><b>Submit</b>&nbsp;&nbsp; <a target=_blank href=http://del.icio.us/post?url=";
      temp+=url;
      temp+="&title=";
      temp+=title;
      temp+=">Delicious</a> | <a target=_blank href=http://www.facebook.com/share.php?u=";
      temp+=url;
      temp+=">Facebook</a> | <a target=_blank href=http://www.google.com/bookmarks/mark?op=edit&bkmk=";
      temp+=url;
      temp+="&title=";
      temp+=title;       
      temp+=">Google</a> | <a target=_blank href=http://www.netscape.com/submit/?U=";
      temp+=url;
      temp+="&T=";
      temp+=title;        
      temp+=">Netscape</a> | <a target=_blank href=http://reddit.com/submit?url=";
      temp+=url;
      temp+="&title=";
      temp+=title;  
      temp+=">Reddit</a> </td></tr>";
      temp+="<tr><td align=left><b>Email: </b>&nbsp;&nbsp; <input style='border: 1px solid #CCCCCC;height:22px' onfocus=\"javascript:if(this.value=='Their address') {this.value='';}\" onblur=\"javascript:if(this.value=='') {this.value='Their address'}\" name='mail' size='25' maxlength='50' value='Their address'>&nbsp;&nbsp;";
      temp+="<input style='border: 1px solid #CCCCCC;height:22px' name='yourmail' onfocus=\"javascript:if(this.value=='Your address') {this.value='';}\" onblur=\"javascript:if(this.value=='') {this.value='Your address'}\" size='25' maxlength='50' value='Your address'> &nbsp;<input type='submit' name='Submit'  value='send'>";
      temp+="</td></tr>";
      temp+="<input type=hidden name='job' value='send_mail'>";
      temp+="<input type=hidden name='link_url' value='"+url+"'>";
      temp+="<input type=hidden name='title' value='"+title+"'>";
      temp+="<input type=hidden name='content' value='"+content+"'>";
      temp+="<input type=hidden name='pic_url' value='"+pic_url+"'>";
      temp+="</form></table>";
  var show=document.getElementById(counter);
  show.innerHTML = temp;
}
//-->

