<html>
<head>
<title>page</title>
<script type="text/javascript">
function union_chbox_orientations() {
values_orientations='';
test='';
for (i = 0; i < 4; i++) {
if (document.getElementById('box_orientation'+i).checked) {
values_orientations = values_orientations+document.getElementById('box_orientation'+i).value+'&';
}
//если выбраны все, убрать галочку с всех и поставить на "все файлы"
if (document.getElementById('box_orientation'+1).checked && document.getElementById('box_orientation'+2).checked && document.getElementById('box_orientation'+3).checked) {
values_orientations = document.getElementById('box_orientation'+0).value+'&';
document.getElementById('box_orientation'+0).checked = true;
for (i = 1; i < 4; i++) {
document.getElementById('box_orientation'+i).checked = false;
}
}
}
for (i = 1; i < 4; i++) { // если выбрано "все ориентации" и нажата определённая, то убирает все ориентации
if (document.getElementById('box_orientation'+i).checked && document.getElementById('box_orientation'+0).checked == true) {
document.getElementById('box_orientation'+0).checked = false;
values_orientations = document.getElementById('box_orientation'+i).value+'&';
}
}
return (true);
}
</script>
</head>
<body>
<div class="conteiner_orientations">
<p>Orientation:</p>
<input type='checkbox' name='name' value='all orientations' id='box_orientation0' onClick='return union_chbox_orientations()'><img src='/'/>
<label for='box_orientation0'>all orientations</label><br>
<input type='checkbox' name='name' value='vertical' id='box_orientation1' onClick='return union_chbox_orientations()'><img src='/'/>
<label for='box_orientation1'>vertical</label><br>
<input type='checkbox' name='name' value='horizontal' id='box_orientation2' onClick='return union_chbox_orientations()'><img src='/'/>
<label for='box_orientation2'>horizontal</label><br>
<input type='checkbox' name='name' value='square' id='box_orientation3' onClick='return union_chbox_orientations()'><img src='/'/>
<label for='box_orientation3'>square</label><br>
</div>
</body>
</html>