function showPopup(url, width, height){
	window.open(url, "popup", "status = 1, height = " + height + ", width = " + width + ", resizable = 0" );
}

function toggleCheckboxes(label){
	var i = 0;
	while($(label+i) != null){
		$(label+i).checked = !$(label+i).checked;
		i++;
	}
}
function bookmarksite(title, url){
	if (window.sidebar){ // firefox
		window.sidebar.addPanel(title, url, "");
	}else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	}else if(document.all){// ie
		window.external.AddFavorite(url, title);
	}
}