function InsertMovie(movie, width, height, nomovie, product) {
	document.write('<object type="application/x-shockwave-flash" data="/_swf/' + movie + '.swf" width="' + width + '" height="' + height + '">\n');
	document.write('<param name="movie" value="/_swf/' + movie + '.swf" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<img src="/_img/' + nomovie + '.jpg" border="0" width="' + width + '" height="' + height + '" alt="' + product + '" />\n');
	document.write('</object>\n');
}

function InsertLocalMovie(movie, width, height, nomovie, product) {
	document.write('<object type="application/x-shockwave-flash" data="' + movie + '.swf" width="' + width + '" height="' + height + '">\n');
	document.write('<param name="movie" value="' + movie + '.swf" />\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<img src="/_img/' + nomovie + '.jpg" border="0" width="' + width + '" height="' + height + '" alt="' + product + '" />\n');
	document.write('</object>\n');
}


