function video(WIDTH, HEIGHT, URL)
{

	document.write ('<embed src="' + URL + '" type="application/x-shockwave-flash" wmode=transparent width=' + WIDTH + ' height=' + HEIGHT + '>');
	document.write ('</embed>');
}

function vazzeswf(URL, WIDTH, HEIGHT)
{
	  document.write ('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
      document.write ('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"');
      document.write ('width="' + WIDTH + '" height="' + HEIGHT + '">');
      document.write ('<param name="movie" value="' + URL + '"');
      document.write ('<param name="quality" value="high">');
      document.write ('<embed src="' + URL + '"');
	  document.write ('quality="high" bgcolor="#FFFFFF" swLiveConnect="true"');
	  document.write ('width="' + WIDTH + '" height="' + HEIGHT + '">');
	  document.write ('type="application/x-shockwave-flash"');
	  document.write ('pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	  document.write ('</object>');
}

