<!--//
 
var value = null;
function OpenWin(value,wval,hval) 
	{
	window.open(value,'popup','resizable=yes,width=' + wval + ',height=' + hval + ',status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');
	}		

function OpenPicWin(value,wval,hval) 
	{
	window.open(value,'popup','resizable=no,width=' + wval + ',height=' + hval + ',status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');
	}
function None()
{
}
function stel(telname)
{
	var c = 1;
	document.stel_form.s_tel.length=0;
	for(var a=0;a<telf.length;a++)
	{
		rExp = new RegExp(telname,"gi");
		tStr = new String(telf[a]);
		results = rExp.test(tStr);
		if (results)
		{
			document.stel_form.s_tel[c] = new Option(telf[a],telid[a]);
			c++;
		}
	}
	document.stel_form.s_tel[0] = new Option("Leitud: "+(c-1)+" telefoni");
	document.stel_form.s_tel[0].selected=true;
	document.stel_form.s_tel[0].style.color="#FF0033";
}
//-->