function setClip( strPage, strSize, intID )
{
  CLIP_PAGE   = strPage;
  PLAYER_SIZE = strSize;
  CLIP_ID     = intID;
}

function  changeSize(strSize)
{
  var loc = "index.php?page=" + CLIP_PAGE + "&size=" + strSize + "&id=" + CLIP_ID;
  window.location.href = loc;  
  return false;
}

function initWindow()
{
  window.resizeTo( PLAYER_WINDOW_WIDTH, PLAYER_WINDOW_HEIGHT );
}


