<!--
function showWindow(width, height, url, toolbar) {
if (toolbar) {
window.open(url, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height);
}
else {
window.open(url, "", "left=" + ((screen.width - width) / 2) + ",top=" + ((screen.height - height) / 2) + ",status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height);
}
}

function showObject(obj) {
    obj.className = "visible"
}
function hideObject(obj) {
    obj.className = "hidden"
}

function checkReg(){

if(!((document.forms['mainform'].vote[0].checked)||(document.forms['mainform'].vote[1].checked)||(document.forms['mainform'].vote[2].checked)||(document.forms['mainform'].vote[3].checked)||(document.forms['mainform'].vote[4].checked))){
alert("Вы не проголосовали!");
return false;
}
document.forms['mainform'].submit();
}

//-->