//Extend the String object so that we can use the trim() function like; sVar.trim();
String.prototype.trim = function() {
  a = this.replace(/^\s+/, '');
  return a.replace(/\s+$/, '');
};


//VIDEO POP UP

function pop(url, name, props) {
	window.open(url, name, props);
}