function deleteConfirm(url, text){
	if (confirm(text)){
		window.location = url;
	}
}

function swapLargeImage(id, index){
	
	for (var i = 0; i <= 4; i++){
		thumb = document.getElementById('verysmallimage' + i);
		if (thumb != null){
			if (i == index){
				thumb.className = "verysmallimageon";
			}else{
				thumb.className = "verysmallimage";				
			}
		}
	}
	document.getElementById('largeimage').src = "quads/" + id + "-" + index + "-large.jpeg";

}