<!--
function showDida(nameDiv,control){
	if (control == "true") {
		document.getElementById(nameDiv).style.display = 'block';
	}
	else {
		document.getElementById(nameDiv).style.display = 'none';		
	}
}

function openWin(imgName) { //v2.0
  window.open('imageBig.html?img='+imgName,'imageBig','width=400,height=400');
}

//-->