// JavaScript Document
var videoTitles = new Array('Anatomy &amp; Pathology', 'Clinical Shiatsu',
'Cranial Sacral Fundamentals', 'Deep Tissue &amp; Neuromuscular Therapy - Extremities', 'Deep Tissue &amp; Neuromuscular Therapy - The Torso',
'Heal Your Wrist Pain', 'Healing Stone Massage', 'Healing Stone Massage 2', 'Integrative Massage - Earth', 'Integrative Massage - Fire',
'Integrative Massage - Spirit', 'Lymphatic Drainage', 'Mastering Pregnancy Massage', 'Massage Therapy for Fibromyalgia', 'Myofascial Release - Beginning','Myofascial Release - Advanced', 'Nerve Mobilization', 'Polarity Therapy' ,'Therapeutic Massage');
var videoLinks = new Array('/programs/anatomy-and-pathology.htm','/programs/shiatsu-anma-therapy.htm','/programs/cranial-sacral-fundamentals.htm','/programs/neuromuscular-therapy.htm','/programs/neuromuscular-therapy.htm','http://shop.naturalwellnessonline.com/prodinfo.asp?number=V400D','/programs/stone-massage.htm','http://shop.naturalwellnessonline.com/prodinfo.asp?number=V566D','/programs/integrative-massage-earth.htm','/programs/integrative-massage-fire.htm','/programs/integrative-massage-spirit.htm','/programs/lymphatic-drainage.htm','http://shop.naturalwellnessonline.com/prodinfo.asp?number=V321D','/programs/fibromyalgia-and-massage.htm','/programs/myofascial-release.htm','/programs/myofascial-release.htm','/programs/nerve-mobilization.htm','/programs/polarity-therapy.htm','/programs/clinical-massage-therapy.htm');
var videoPics = new Array('e420_sm.jpg','e536_sm.jpg','e510_sm.jpg','e525_sm.jpg','e525_sm.jpg','V400D_sm.jpg','e565_sm.jpg','V566D_sm.jpg','e512_sm.jpg','e517_sm.jpg','e522_sm.jpg','e620_sm.jpg','v321d_sm.jpg','e508_sm.jpg','e578_sm.jpg','e578_sm.jpg','e610_sm.jpg','e588_sm.jpg','v546d_sm.jpg')
var videoType = new Array(1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2);

function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
 }
 function nameSend(movieName, itemNum) {
   var tempButton = "<a href='" + videoLinks[itemNum] + "' />\n";
   var tempPic = tempButton;
   //var text = document.htmlForm.sendField.value;
   getFlashMovie("samplePlayer2").changeMovie(movieName);
   document.getElementById("courseName").innerHTML = videoTitles[itemNum];
   //tempButton += "<img src='images/videoEnrollBtn.jpg'></a>\n";
   tempButton += "<img src='/images/videoLearnBtn.jpg' border='0'></a>\n";
   document.getElementById("courseButtons").innerHTML = tempButton;
   tempPic += "<img src='/images/" + videoPics[itemNum] + "' border='0'></a>\n";
   document.getElementById("coursePic").innerHTML = tempPic;
}