// JavaScript Document
function promoVid(embedType){
	if (embedType=='flv'){ 
var mediaName="/video.flv";
	}
	if (embedType=='mov'){ 
var mediaName="/samplemov.mov";
	}
var site="http://source.gearaction.com/";
fullpath=location.pathname;
numberNeeded=fullpath.lastIndexOf("/");
folderNum=fullpath.substring(1,numberNeeded);
folderNum=folderNum.concat(mediaName);
vidPath=site.concat(folderNum);
}