//<script>
function openphoto(idgallery,iditem)
{
	www='/content/gallery/pimg.asp?ids='+idgallery+'&i='+iditem;
	width=100;
	height=100;
	window.open(www, 'photo','width=' + width + ',height=' + height +',scrollbars=auto,resizable=yes,topmargin=0,leftmargin=0');
}
function checkallcountry()
{
	var newValue=true;
	var l=document.all.item("country").length;
	if (l!=undefined) 
	{
		for (i=0;i<l;i++)
		{
			document.all.item("country")[i].checked=newValue;
		}
	}
	else
	{
		document.all.item("country").checked=newValue;
	}
}
function checkallthems()
{
	var newValue=true;
	var l=document.all.item("thems").length;
	if (l!=undefined) 
	{
		for (i=0;i<l;i++)
		{
			document.all.item("thems")[i].checked=newValue;
		}
	}
	else
	{
		document.all.item("thems").checked=newValue;
	}
}

