///////////////////
// Clock		 //
// 28.8.2001	 //
// Marek Nebesář //
///////////////////

function writetime() {

time=new Date();
with(time)
	{ hodiny=getHours(); minuty=getMinutes(); }
cas=(hodiny<10 ? "0" : "")+hodiny+":";
cas+=(minuty<10 ? "0" : "")+minuty;
document.all.hod.innerText=cas;
window.setTimeout("writetime();",1000);
}


function writedate() {

today = new Date();
month = today.getMonth();
month = month + 1;
document.write(today.getDate() + "." + month + "." + today.getFullYear());
}


function zoom(name) { 
 switch (name) {
 	case "1" :
	 header="Ixodes ricinius";
	 vys="265";
	 root="ix.html";
	 break;
	case "2" :
	 header="Giardia intestinalis";
	 vys="300";
	 root="gi.html";
	 break;
	default :
	 header="Trichodina sp.";
	 root="tr.html";
	 vys="275";
	 break;
}
 nw=window.open(root,"Picture","width=300,height="+vys+",toolbar=no,status=no,location=no,directories=no,scrollbars=no,resizable=no,copyhistory=no");
 }

