function Sure($href){ if(confirm("Вы уверены?")){ location.href=$href; } else{ return false; } } function Voting(id){ t=''; var frm=document.Vote; var inp;var i=0; while(1){ inp=frm.elements[i]; if(inp==null) break; if((inp.type=='radio'||inp.type=='checkbox')&&inp.checked) t+='&'+inp.name+'='+inp.value; if(inp.type!='radio'&&inp.type!='checkbox') t+='&'+inp.name+'='+inp.value; i++; } window.open("/cgi-bin/opros/vote.cgi?vote=yes&act=vote&id="+id+'&'+t.substring(1),"result",'width=640,height=400'); } function View(img_id, img_w, img_h, ext){ //var w = window.open('/files/open.html?fid='+img_id,'_blank','height='+img_h+'px;width='+img_w+'px'); window.open('/cgi-bin/files/files.cgi?type=file&act=view&fid='+img_id,'file_view','height='+img_h+',width='+img_w); }