function widthFieldsAnketa()
{
	if(document.getElementById('formID') != null)
	{
		var table = document.getElementById('formID');
		table.textAlign = "left";
		var trList= table.getElementsByTagName('tr');
		for (var i=0;i<trList.length;i++)
		{
		  var tdList = trList[i].getElementsByTagName('td');
		  
		  for (j=0;j<tdList.length;j++) 
		  {
				if(tdList[j].width == "20%")
					tdList[j].width = "35%";
				if(tdList[j].width == "80%")
				{
					tdList[j].textAlign = "left";
					tdList[j].width = "65%";				
				}			
		  }
		}
	}
}

function PopupAnketa_ford(artID,paramname,param) {
/*  if(salon_id != '')
  {
	  salon = "&"+salon+"="+salon_id;
  }*/
  var width=480;
  var height=540;
  var left=screen.width/2-width/2;
  var top=screen.height/2-height/2;
  var wnd = window.open("/default.asp?artID="+artID+"&"+ paramname+"="+escape(param), "anketapopup","left="+left+",top="+top+",width="+width+",height="+height+",resizable=0,status=0,scrollbars=1");
  if(wnd)
    wnd.focus();
}
