function getFlashDiv(div_name, fname, n, total)
{
       document.getElementById(div_name).innerHTML = 
                '<embed src="/flash-img/press_gallery.swf" width="700" height="527" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="filemane=' + fname + '"></embed>' + "\n";

	for(var i = 1; i <= total ; i++) {
		if (i==n) {
			InfoButtonOn('tab'+i);
		} else {
			InfoButtonOff('tab'+i);
		}
        }
}
function InfoButtonOn(Infobut) {
 document.getElementById(Infobut).className = "tab_on";
}

function InfoButtonOff(Infobut) {
 document.getElementById(Infobut).className = "tab_off";
}

