function highlight(oid, color) {
	var obj = document.getElementById(oid);
	obj.bgColor = color;
	//alert (oid + " " +color);
}

function sumvar(groupid,totale) {
	var tempvar = new Array();
	for(var i=0;i<totale;i++){
		var tempobj = document.getElementById(groupid+i)
			if(tempobj.checked){
				tempvar.push(tempobj.value);
			}
	}
	//alert(tempvar);
	return tempvar.join(",");
}

function poppic (picid) {
	window.open ("showphoto.php?id="+picid,"showphoto","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,height=480,width=640"); 
}