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 order(path) {
        window.open(path, "order","width=500,height=500,top=100,left=200,titlebar=no,toolbar=no,location=no,statusbar=no,menubar=no,scrollbars=yes,resizable=no");
}

function inc(min, max, id) {
	if (document.getElementById(id).value < max) {
		document.getElementById(id).value=document.getElementById(id).value-1+2;
	} else {
		alert('AHTUNG! Больше '+max+' единиц заказать нельзя!');
	}
}

function dec(min, max, id) {
	if (document.getElementById(id).value > min) {
		document.getElementById(id).value-=1;
	}
}

function formselect(s) {
	if (s.value==0) {
                document.getElementById('org_form').style.display='block';
        } else {
                document.getElementById('org_form').style.display='none';
        }
}

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);
}

 