var savedTarget = null; // The target layer (effectively vidPane)
var orgCursor = null; // The original Cursor (mouse) Style so we can restore it
var dragOK = false; // True if we're allowed to move the element under mouse
var dragXoffset = 0; // How much we've moved the element on the horozontal
var dragYoffset = 0; // How much we've moved the element on the verticle
vidPaneID = document.getElementById('vidPane'); // Our movable layer
vidPaneID.style.top = '200px'; // Starting location horozontal
vidPaneID.style.left = '200px'; // Starting location verticle
