function popup() {
        window.open('/catalogue/gallery/id.'+id[cur_i]+'/', "gallery","width=500,height=500,top=100,left=200,titlebar=no,toolbar=no,location=no,statusbar=no,menubar=no,scrollbars=no,resizable=no");
}

function setSelectOptions(the_form, the_select, do_check)
{
    var selectObject = document.forms[the_form].elements[the_select];
    var selectCount  = selectObject.length;

    for (var i = 0; i < selectCount; i++) {
        selectObject.options[i].selected = do_check;
    }

    return true;
}

function cityselect(s) {
	if (s.value==0) {
		document.getElementById('city').disabled=false;
		document.getElementById('city').value="";
		document.getElementById('city').style.width='185px';
		document.getElementById('city').style.height='18px';
		document.getElementById('city').style.border='solid 1px #7F9DB9';
                document.getElementById('city_s').style.display='none';
        } else {
		document.getElementById('city').disabled=true;
		document.getElementById('city').value=s.value;
        }
}

function prev() {
	if (cur_i == 1) {
		document.getElementById('f').src='/i/image.php?file='+f[n];
		cur_i=n;
	} else {
		document.getElementById('f').src='/i/image.php?file='+f[cur_i-1];
		cur_i=cur_i-1;
	}
}

function next() {
	if (cur_i == n) {
		document.getElementById('f').src='/i/image.php?file='+f[1];
		cur_i=1;
	} else {
		document.getElementById('f').src='/i/image.php?file='+f[cur_i+1];
		cur_i=cur_i+1;
	}
}

function clear_me(field) {
	if ((field.name=='login') && (field.value=='логин'))  {
		field.value="";
	}

	if ((field.name=='pwd') && (field.value=='******')) {
		field.value="";
	}

}

function change_validation(frm) {
//	alert(frm.name.alt);
	frm.name.alt='blank';
//	alert(frm.name.alt);
	frm.phone.alt='blank';
	frm.mail.alt='email|3';
	frm.city.alt='blank';
	frm.address.alt='blank';
}

function res() {
	var x=document.getElementById('top').offsetWidth;
	var y=document.getElementById('top').offsetHeight+document.getElementById('bottom').offsetHeight;

	window.resizeTo(x+6,y+67);
}

function wq() {
        window.open('/popup.php', "popup","width=328,height=413,top="+(window.screen.height/2 - 206)+",left="+(window.screen.width/2 - 164)+",titlebar=no,toolbar=no,location=no,statusbar=no,menubar=no,scrollbars=no,resizable=no");
}