<!--

function chgPhoto(picture, id) {
	document.large.src = picture;
	document.getElementById(id).className = 'selected';

	var prevID = 1;
	while(prevID != id && prevID < 14) {
		document.getElementById(prevID).className = '';
		prevID++;
	}

	var nextID = 13;
	while(nextID != id && nextID > 0) {
		document.getElementById(nextID).className = '';
		nextID--;
	}
}	

function openWin(url, plan, h, w) {
	var open = 
	window.open('view.php?img=' + url + '',plan,'scrollbars=no,menubar=no,height='+h+',width='+w+',resizable=yes,toolbar=no,location=no,status=no');
}
//-->