﻿var show_objects = true;

function krama_control(url_swf, width, height, quality, url_img, alt_img) {
	if (show_objects) document.write('<object type="application/x-shockwave-flash" data="' + url_swf + '" width="' + width + '" height="' + height + '">');
	if (show_objects) document.write('<param name="movie" value="' + url_swf + '" />');
	if (show_objects) document.write('<param name="quality" value="' + quality + '" />');
	document.write('<img src="' + url_img + '" width="' + width + '" height="' + height + '" alt="' + alt_img + '" />');
	if (show_objects) document.write('</object>');
}