// JavaScript Document
function showflash(divname,path,width,height,transparent){
	var Temp;
	if(transparent)
	{
	Temp='<embed src="'+path+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="FlashH" width="'+width+'" height="'+height+'" quality="High" wmode="transparent" scale="ExactFit"/>'
	}else
	{
	Temp='<embed src="'+path+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="FlashH" width="'+width+'" height="'+height+'" quality="High" scale="ExactFit"/>'
	}
	
document.getElementById(divname).innerHTML=Temp
}