// FLASH ZOOM IMAGE
function thisMovie(movieName){
	if (window.document[movieName]) {
		return window.document[movieName];
	}
	if (navigator.appName.indexOf("Microsoft Internet")==-1) {
		if (document.embeds && document.embeds[movieName])
			return document.embeds[movieName]; 
		} else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
		{
		return document.getElementById(movieName);
	}
}
// zoom button
var t = 0;
function zoomButton() {
	if (t % 2 == 0){
		doPassVar("zoomin");
		t++;
	} else {
		doPassVar("zoomout");
		t++;
	}
};
function doPassVar(args){
	thisMovie("prodFlash").SetVariable('action', args);
}
// zoom thumb
var thisURL;
var thisURLB;
function changeImage(thisURL, thisURLB){
	imagePath = thisURL;
	imagePathBig = thisURLB;
	thisMovie("prodFlash").SetVariable('image', imagePath);
	thisMovie("prodFlash").SetVariable('imagebig', imagePathBig);
	thisMovie("prodFlash").Rewind();
	thisMovie("prodFlash").Play();
}