function showSWF(ds){
	if (ds["src"] == null || ds["src"] == "") return false;
	if (ds["width"] == null || ds["width"] == "") return false;
	if (ds["heigh"] == null || ds["heigh"] == "") return false;
	if (ds["quality"] == null || ds["quality"] == "") ds["quality"] = "high";
	if (ds["wmode"] == null || ds["wmode"] == "") ds["wmode"] = "Window";
	with(document){
		write ('<object width="'+ ds["width"] +'" height="'+ ds["heigh"] +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0">');
		write ('<param name="movie" value="'+ ds["src"] +'" />');
		write ('<param name="quality" value="'+ ds["quality"] +'" />');
		write ('<param name="wmode" value="'+ ds["wmode"] +'">');
		write ('<embed pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"');
		write (' src="'+ ds["src"] +'" width="'+ ds["width"] +'" height="'+ ds["heigh"] +'" quality="'+ ds["quality"] +'"');
		write (' wmode="'+ ds["wmode"] +'"');
		write ('></embed></object>');
	};
	return null;
};
function showJPG(ds){
	if (ds["href"] == null || ds["href"] == "") ds["href"] = "###";
	if (ds["title"] == null || ds["title"] == "") ds["title"] = "";
	if (ds["src"] == null || ds["src"] == "") return false;
	if (ds["height"] == null || ds["height"] == "") return false;
	if (ds["width"] == null || ds["width"] == "") return false;
	with(document){
		write ('<a href="'+ ds["href"] +'" title="'+ ds["title"] +'" target="'+ ds["target"] +'">');
		write ('<img src="'+ ds["src"] +'" width="'+ ds["width"] +'" height="'+ ds["height"] +'" alt="'+ ds["alt"] +'"');
		write (' border="0" /></a>');
	};
	return null;
}

