var rana_switchFlashType = function(productId, newType) {
	var flashDivObj = document.getElementById('flash_container_productId_' + productId);
	if (flashDivObj == null) { return; }
	var flashSrc = "/sitefiles/43/flash/slideshow-" + newType + ".swf?productId=" + productId;
	flashDivObj.innerHTML = "<object type='application/x-shockwave-flash' width='550' height='446' data='"+flashSrc+"'><param name='movie' value='"+flashSrc+"'/></object>";
}