function openWindow(name, href, width, height, scrollbar){
	FLS=window.open(href, name, "width="+width+", height="+height+",scrollbars="+scrollbar+", resizable=yes,left=100,top=100");
	FLS.focus();
return false;
}

var window_number = 1;

function popupform(myform, windowname, width, height, scrollbar)
{
    FLS = window.open('', windowname+window_number, "width="+width+", height="+height+",scrollbars="+scrollbar+", resizable=yes,left=100,top=100");
    myform.target=windowname+window_number;
    window_number ++;
    FLS.focus();
    return false;
}


//Сколько полей PLZ показывать при поиске
function viewPLZFields(obj){
	var count = 5;

	for(var i=1; i<=count; i++){

		if(i<=obj.options[obj.selectedIndex].title)
			document.getElementById('plz_field_'+i).style.display='';
		else
			document.getElementById('plz_field_'+i).style.display='none';
	}
}