﻿var currentSwfAddress = "";

function FlashInitialise()
{

	SWFAddress.addEventListener(SWFAddressEvent.CHANGE, FlashListen);
	
}

function FlashEmbed(fsp)
{

	FlashEmbedEx('flashMovie', 913, 327, fsp, 'opaque');

}

function FlashEmbedEx(divId, cx, cy, fsp, wmode)
{
	swfobject.embedSWF(fsp, divId, '' + cx, '' + cy, '9.0.45', '/images/content/expressinstall.swf', {swfPath: '/Showcase/', mainXmlPath: '/Showcase/xml/', mainImagePath: '/Showcase/images/'}, {bgcolor: '#CCCCCC', scale: 'scale', quality: 'best', align: 'left', salign: 'tl', menu: 'false', wmode: '' + wmode, allowscriptaccess: 'always'}, {id: '' + divId});
}

function FlashTell(val)
{
	SWFAddress.setValue(val);
}

function FlashListen(event)
{

	if (event.path) {
		if (event.path != '/') {
			if (event.path != currentSwfAddress) {
				currentSwfAddress = event.path;
				RaisePageCommand(event.path);
				location.href = "./#" + event.path;
			} //if
		} //if
	} //if
}

