function ShowFlash(src, width, height) {
		document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+width+"\" height=\""+height+"\" title=\"Кудесан\">");
		document.write("<param name=\"movie\" value=\""+src+"\">");
		document.write("<param name=\"quality\" value=\"high\">");
		//document.write("<param name=\"wmode\" value=\"transparent\">");
		document.write("<embed src=\""+src+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\">");
		document.write("</embed></object>");
		

	}
	
		
	
	
	function ChangerOther()
	{
	  var form = document.vote_form.vote_radio_13;
    var text = document.vote_form.vote_field_58;
    var len = form.length;
    for (i=0; i<len-2; i++) {
      if (form[i].checked) {
          text.value = "";
        }
    } 
		/*var other = document.getElementById("other");
		var cheker = document.getElementById("cheker");
		if (cheker.checked)
		{
			other.disabled=false;
		}
		else
		{
			other.disabled=true;
		}*/
	}
	
	function check_other() {
	  var len = document.vote_form.vote_radio_13.length;
    document.vote_form.vote_radio_13[(len-1)].checked = true;
    //alert(len); 
  }
  function check_form() {
    var form = document.vote_form.vote_radio_13;
    var text = document.vote_form.vote_field_58;
    var len = form.length;
    for (i=0; i<len; i++) {
      if (i != (len-1)) {
        if (form[i].checked) {
          return true;
        }
      }
      else {
        if (text.value != "") {
          return true;
        }
      } 
    }
    return false;
  }

