image1 = new Image(195,22);
image1.src = "/images/update-on.gif";


function update() {
    var updateName = "/images/update-on.gif";
    document.images["updateimg"].src = updateName;
  }
	
function checkall(field) {
for (i = 0; i < field.length; i++) {
field[i].checked = true;}
update();
return "Check All";
}

function uncheckall(field) {
for (i = 0; i < field.length; i++) {
field[i].checked = false;}
update();
return "Uncheck All"; 
}

function popIt(goToPage,currCat,currSite,ltLink,enLink,spLink,height) {
day = new Date();
id = day.getTime();
path = 'http://www.coloradolithuanians.org/'+goToPage+'.phtml?cat='+currCat+'&site='+currSite+'&lth='+ltLink+'&eng='+enLink+'&spk='+spLink;
newWindow = window.open(path,id,'width=450,height='+height+',location=no,toolbar=no,scrollbars=no,resizable=no');
}
