
function show_vote(r) {
  var win_height = 300;
  var win_width = 520;
  if (r == 0)
  {
  	if (document.vote.answer_value != null)
  	    window.open('include/voting.php?vote_for=' + document.vote.answer_value, '', 'scrollbars=yes, menubar=no,location=no,directories=no,status=no,resizable=yes,top=0,left=0,width='+win_width+',height='+win_height);
    else 
		alert('Не выбрано значение');
  }
  else window.open('include/voting.php', '', 'scrollbars=yes, menubar=no,location=no,directories=no,status=no,resizable=yes,top=0,left=0,width='+win_width+',height='+win_height);
}

function show_kamin(id) {
  var win_height = 300;
  var win_width = 520;
  	if (id != null)
  	    window.open('include/info.php?id=' + id, '', 'scrollbars=yes, menubar=no,location=no,directories=no,status=no,resizable=yes,top=0,left=0,width='+win_width+',height='+win_height);
    else 
		alert('Не выбрано значение');
}
function show_innov(id) {
  var win_height = 300;
  var win_width = 520;
  	if (id != null)
  	    window.open('include/info_inn.php?id=' + id, '', 'scrollbars=yes, menubar=no,location=no,directories=no,status=no,resizable=yes,top=0,left=0,width='+win_width+',height='+win_height);
    else 
		alert('Не выбрано значение');
}
