function ShowFlashViewer(sContainer,viewerUrl,imgSmall,imgMiddle,imgBig,sWidth,sHeight) {

	if(!sWidth) {
		sWidth = "100%";
	}

	if(!sHeight) {
		sHeight = "100%";
	}

    sFlashViewer = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+sWidth+'" height="'+sHeight+'" id="ZoomViewer" align="middle">\n' +
    '<param name="allowScriptAccess" value="sameDomain" />\n' +
    '<param name="movie" value="' + viewerUrl + '?z1path=' + imgSmall + '&z2path=' + imgMiddle + '&z4path=' + imgBig + '" />\n' +
    '<param name="quality" value="high" />\n' +
    '<param name="wmode" value="transparent" />\n' +
    '<param name="salign" value="LT" />\n' +
    '<param name="bgcolor" value="#ffffff" />\n' +
    '<embed src="' + viewerUrl + '?z1path=' + imgSmall + '&z2path=' + imgMiddle + '&z4path=' + imgBig + '" quality="high" bgcolor="#ffffff" width="'+sWidth+'" height="'+sHeight+'" name="FlashViewer" align="middle" wmode="transparent" salign="LT" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n' +
    '</object>\n';
	
	$("#"+sContainer).html(sFlashViewer);
}