/*	Passes the number of the image from the XML file
	we want SlideShowPro inside the SWF to load
*/

function sspLoadImageNumber(img) {
	thisMovie("workshow").sspLoadImageNumber(img);
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	}
	else {
		return document[movieName]
	}
}