// this will have the functions that deal with liking or unliking an item


function openUnlike( div_id, link, type ) {
  // first add the item to the unlike URL list if it is an unlike
//  if ( type == 'unlike' ) {
//alert("loading unlike");
alert(type);
    loadXMLDoc( 'addUnlike.php?action='+ type +'&task='+ type +'URL&type=url&url=' + escape( link ), "" );
//  } 

  div = document.getElementById( div_id );
  div.style.display = 'block';
}
