/*function insertFlash(file,w,h,id,flashvars,bgcolor)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+ w +'" height="'+ h +'" id="'+ id +'" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+ file +'" /><param name="quality" value="high" />');
	document.write('<PARAM NAME=FlashVars VALUE="'+ flashvars +'"> ');
	document.write('<PARAM NAME=BGCOLOR VALUE="'+ bgcolor +'"> ');
	document.write('<embed src="'+ file +'" quality="high" bgcolor="'+ bgcolor +'" FlashVars="'+ flashvars +'" width="'+ w +'" height="'+ h +'" name="'+ id +'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}*/

function insertFlash(file,width,height,transparent,id,flashvars,bgcolor)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+ id +'" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+ file +'" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="lt" />');
	document.write('<PARAM NAME=FlashVars VALUE="'+ flashvars +'"> ');
	document.write('<PARAM NAME=BGCOLOR VALUE="'+ bgcolor +'"> ');
	if(transparent==1){
		document.write('<param name="wmode" value="transparent">');	
	}
	document.write('<embed ');
	if(transparent==1){
		document.write('wmode="transparent" ');
	}
	document.write('src="'+ file +'" FlashVars="'+ flashvars +'" quality="high" scale="noscale" salign="lt" bgcolor="'+ bgcolor +'" width="'+width+'" height="'+height+'" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}
	function viewImage(src,txt){
		src = (src!="")?src:"images/spacer.gif";
		ximage     = document.getElementById('fieldImage');
		ximage.src = src;
		if(txt){
			title     = document.getElementById('title_display');		
			title.innerHTML=txt;
		}
	}
	function hideImage(src,txt){
		src = (src!="")?src:"images/spacer.gif";
		ximage     = document.getElementById('fieldImage');
		ximage.src = src;

		title     = document.getElementById('title_display');		
		title.innerHTML="";
	}	