<!--
//Popup
popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)
{
   if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }

  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


//Bookmark URL button 
function bmURL()
{
    var bm_url=document.location;
    var delicious_url='http://del.icio.us/post/?url=';
    delicious_url+=bm_url;
    
    document.location=delicious_url;
}

//Email2Friends Popup
function efURL()
{
    var page_url=document.location;
    var email2friend_page="/Email2Friend.php?url="+page_url;

    var width=325;
    var height=275;
    var left=(screen.width-width)/2;
    var top=(screen.height-height)/2;
	
    popUpWindow(email2friend_page, left, top, width, height);   
}


-->