// JavaScript Document

function InsertMovie(vidsrc)
{
  document.write('<embed src="sample.mov" qtsrc="rtsp://xstream.cortland.edu/Archive/');
  document.write(vidsrc);
  document.write('" width="320" height="256" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>');
}

function InsertCapMovie(vidsrc)
{
  document.write('<embed src="sample.mov" qtsrc="http://xstream.cortland.edu/Archive/');
  document.write(vidsrc);
  document.write('" width="320" height="336" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>');
}

function InsertLiveMovie(vidsrc)
{
  document.write('<embed src="sample.mov" qtsrc="');
  document.write(vidsrc);
  document.write('" width="320" height="256" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>');
}