
function onProductionChange()
{
   var selProd = document.getElementById('selProduction').value;
   document.location = "list.php?type="+selProd;
}

function onProgrammeChange(strType)
{
   var selItem = document.getElementById('selProgramme').value;
   if (selItem!=0)
   {
      document.location = "detailslist.php?type="+strType+"&id="+selItem;
   }
   
}


function onMediaChange(p_elem)
{
   if (p_elem.value != '0')
   {
      if (document.getElementById("captionPlay") == null)
      {
         var strURL = document.getElementById("vid_url_"+p_elem.value).value;
         showVideo('VideoContentDiv', '/video/'+strURL, '352px', '288px');
         return true;
      }
      var strCaption = document.getElementById("vid_title_"+p_elem.value).value;
      var strPic = document.getElementById("vid_pic_"+p_elem.value).value;
      var strURL = document.getElementById("vid_url_"+p_elem.value).value;
      document.getElementById("captionPlay").innerHTML = "&nbsp;" + strCaption.toUpperCase();
      document.getElementById("imgVideoPreview").src = "image.php?img=images/video_prev/" + strPic+"&w=352";
      document.getElementById("btnPlay").onclick = function()
      {
         showVideo('VideoContentDiv', '/video/'+strURL, '352px', '288px');
      }
   }
   return true;
}

function onMediaChange2(id)
{
      if (document.getElementById("captionPlay") == null)
      {
         var strURL = document.getElementById("vid_url_"+id).value;
         showVideo('VideoContentDiv', '/video/'+strURL, '352px', '288px');
         return true;
      }
      var strCaption = document.getElementById("vid_title_"+id).value;
      var strPic = document.getElementById("vid_pic_"+id).value;
      var strURL = document.getElementById("vid_url_"+id).value;
      document.getElementById("captionPlay").innerHTML = "&nbsp;" + strCaption.toUpperCase();
      document.getElementById("imgVideoPreview").src = "image.php?img=images/video_prev/" + strPic+"&w=352";
      if (strURL!="")
      {
         document.getElementById("btnPlay").style.display="";
      }
      else
      {
         document.getElementById("btnPlay").style.display="none";
      }
      document.getElementById("btnPlay").onclick = function()
      {
         showVideo('VideoContentDiv', '/video/'+strURL, '352px', '288px');
      }
   return true;
}

function onAboutRowClick(p_elem)
{
   var id_about = p_elem.id.split('_')[1];
   window.open("modifyabout.php?id="+id_about,"edit_window","location=0,status=1,scrollbars=0,width=620,height=650");
}

function onAddAbout()
{
   window.open("modifyabout.php","edit_window","location=0,status=1,scrollbars=0,width=620,height=650");
}

function onPartnerRowClick(p_elem)
{
   var id = p_elem.id.split('_')[1];
   window.open("modifyparthers.php?id="+id,"edit_partner_window","location=0,status=1,scrollbars=0,width=620,height=300");
}

function onAddPartner()
{
   window.open("modifyparthers.php","edit_partner_window","location=0,status=1,scrollbars=0,width=620,height=300");
}

function reloadParentWindow()
{
   opener.location.reload(true);
   opener.focus();
   self.close();
}

function doSubmit()
{
   document.getElementById("contact_form").submit();
}

function doVideoSubmit()
{
   document.getElementById("videomain").submit();
}

function onProductionRowClick(p_elem, selType)
{
   var id_item = p_elem.id.split('_')[1];
   //var selType = document.getElementById('fid_type').value;
   window.open("modifyproduction.php?id="+id_item+"&type="+selType,"edit_window","location=0,status=1,scrollbars=1,width=820,height=650");
}

function onAddProduction()
{
   var selType = document.getElementById('fid_type').value;
   window.open("modifyproduction.php?type="+selType,"edit_window","location=0,status=1,scrollbars=0,width=820,height=650");
}

function onChangeViewProductionType(p_elem,id)
{
   if (id == "")
   {
      document.location = "modifyproduction.php?type="+p_elem.value;
   }
   else
   {
      document.location = "modifyproduction.php?type="+p_elem.value+"&id="+id;
   }
}

function onChangeProductionType(p_elem)
{
   document.location = "production.php?type="+p_elem.value;
}

function onAddVideo(p_id_prod)
{
   window.open("modifyvideo.php?idp="+p_id_prod,"video_window","location=0,status=1,scrollbars=0,width=700,height=550");
}

function onVideoRowClick(p_elem,p_id_prod)
{
    var id_item = p_elem.id.split('_')[1];
   window.open("modifyvideo.php?idp="+p_id_prod+"&id="+id_item,"video_window","location=0,status=1,scrollbars=0,width=700,height=550");
}

function onAttachVideo()
{
   var ReturnedValue = window.open("../upload/upload.php","upload_window","location=0,status=1,scrollbars=0,width=400,height=200");
}

function removeVideo(id)
{
   if (confirm("Do you really want to remove this item?"))
   {
      document.location = "modifyvideo.php?id="+id+"&par=remove";
   }
}

function removeProduction(id)
{
   if (confirm("Do you really want to remove this item and all assigned to it video items??"))
   {
      document.location = "modifyproduction.php?id="+id+"&par=remove";
   }
}


