﻿// ***** BASE VARIABLES *****
//****** LOCAL SANDBOX VARIABLES *****
//var thumbnailpath = "/bizkids/resources/images/images_thumbnails/";
//var flvpath = "/bizkids/resources/flv/";
//var resourcepath = "/bizkids/resources/";
//var newsletterpath = "/bizkids/resources/newsletters/";
//var curriculumpath = "/resources/curriculum/";

//****** LIVE ADHOST VARIABLES *****
var thumbnailpath = "/resources/images/images_thumbnails/";
var flvpath = "/resources/flv/";
var resourcepath = "/resources/";
var newsletterpath = "/resources/newsletters/";
var curriculumpath = "/resources/curriculum/";

var params = {};
params.wmode = "transparent";
var thisVideoUrl;
var thisVideoName;

// ***** BASE FUNCTIONS *****
function loadXMLDoc(fname){
	var xmlDoc;
	if (window.ActiveXObject){
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}else if (document.implementation && document.implementation.createDocument){
		xmlDoc=document.implementation.createDocument("","",null);
	}else{
		alert('Your browser is not able to process the XML, please update.');
	}
	xmlDoc.async=false;
	xmlDoc.load(fname);
	return(xmlDoc);
}