var popupWindow;
function uploadToFacebook(src, me)
{
    $(me).html('<img id="facebookloading" src="' + scriptSrc + 'images/loading.gif" width="16" height="11">');
    facebookConnection(src);
}
function facebookConnection(selectedPhotoID)
{
    var theleft = (screen.width / 2) - 150;
    var theheight = (screen.height / 2) - 350;
    popupWindow = window.open(scriptSrc + "facebook.php?upload=true&selectedPhotoID=" + selectedPhotoID, "facebookConnector","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=550,left=" + theleft + ",top=" + theheight);

}
function parent_disable()
{
  if(popupWindow && !popupWindow.closed)
  {
        popupWindow.focus();
  }
}
