function tooggle(id) {
	var elem = document.getElementById(id);
		if (elem.style.display == "none") {
			elem.style.display = "block";
			document.getElementById(id + 'img').src='/media/tpl/store-dir-arrow2.gif';
			}
			else {
				elem.style.display = "none";
				document.getElementById(id + 'img').src='/media/tpl/store-dir-arrow.gif';
			}
}

// help popup
function vidShare() {
	var share = document.getElementById('vidshare');
	var browsername = navigator.appName;
	
		if (share.style.display == "none") {
 			 if (browsername == "Microsoft Internet Explorer") {
				share.style.display = "block";
				share.style.position = "absolute";
			 	share.style.top = "164";
			 	share.style.left = "645";
			 }
			 else {
				share.style.display = "block";
				share.style.position = "absolute";
			 	share.style.top = "160" + "px";
			 	share.style.left = "645" + "px";
			 }
		}
			else {
				share.style.display = "none";
			}
}
