﻿function showVideo() {
	var a = showVideo.arguments;
	var id = a[0];
	var file = a[1];
	var width = a[2];
	var height = a[3];
	
	var flashvars = {
		file: "/chinese/videos/"+file,
		shuffle: "true",
		aboutlnk: "http://www.tomleemusic.ca/",
		abouttxt: "Tom Lee Music",
		overstretch: "true",
		shownavigation: "false"
	};

	var params = {
		allowScriptAccess: "always",
		allowfullscreen: "true",
		menu: "false",
		wmode: "opaque"
	};

	swfobject.embedSWF("/jwplayer/player.swf", id, width, height, "9.0.0", "/chinese/images/expressInstall.swf", flashvars, params);	
}

function showAlbum() {
	var a = showAlbum.arguments;
	var id = a[0];
	var file = a[1];
	var width = a[2];
	var height = a[3];
	var section = a[4];
	var xml;
	
	switch(section) {
		case "piano": xml = "data_piano_vertical_xml.cfm?brand=";break;
		case "photo": xml = "data_album_xml.cfm?f=";break;
	}
	
	var flashvars = {
		width: width,
		height: height,
		file: "/chinese/module/"+xml+file,
		shuffle: "true",
		aboutlnk: "http://www.tomleemusic.ca/",
		abouttxt: "Tom Lee Music",
		overstretch: "true",
		shownavigation: "false"
	};

	var params = {
		allowScriptAccess: "always",
		menu: "false",
		wmode: "opaque"
	};

	swfobject.embedSWF("/jwplayer/imagerotator.swf", id, width, height, "9.0.0", "/chinese/images/expressInstall.swf", flashvars, params);
}

function changeAlbum(fileName) {
	showAlbum('photoAlbum',fileName,'220','165','photo');
}