<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>O shkole</title> <link rel="stylesheet" href="video/css/videobox.css" type="text/css" /> <script type="text/javascript" src="video/js/mootools.js"></script> <script type="text/javascript" src="video/js/swfobject.js"></script> <script type="text/javascript" src="video/js/videobox.js"></script> <style type="text/css"> </Style> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <SCRIPT LANGUAGE=JavaScript> <!--- function newwindow(name) { window.open(name, '_blank', 'width=700,height=500', scrolling="auto"); } //--> </SCRIPT> <script language="javascript" type="text/javascript"> <!-- /**************************************************** Author: Eric King Url: http://redrival.com/eak/index.shtml This script is free to use as long as this info is left in Featured on Dynamic Drive script library (http://www.dynamicdrive.com) ****************************************************/ var win=null; function NewWindow(mypage,myname,w,h,scroll,pos){ if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;} if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;} else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20} settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes'; win=window.open(mypage,myname,settings);} // --> </script> <style> #glowtext{ filter:glow(color="#800000",strength=5); width:100%; } </style> <script language="JavaScript"> function glowit(which){ if (document.all.glowtext[which].filters[0].strength==5) document.all.glowtext[which].filters[0].strength=2 else document.all.glowtext[which].filters[0].strength=5 } function glowit2(which){ if (document.all.glowtext.filters[0].strength==5) document.all.glowtext.filters[0].strength=2 else document.all.glowtext.filters[0].strength=5 } function startglowing(){ if (document.all.glowtext&&glowtext.length){ for (i=0;i<glowtext.length;i++) eval('setInterval("glowit('+i+')",400)') } else if (glowtext) setInterval("glowit2(0)",400) } if (document.all) window.onload=startglowing </script> <SCRIPT LANGUAGE="JavaScript"> var timerID = null; var timerRunning = false; function stopclock (){ if(timerRunning) clearTimeout(timerID); timerRunning = false; } function showtime () { var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds() var timeValue = "" + ((hours >24) ? hours -24 :hours) timeValue += ((minutes < 10) ? ":0" : ":") + minutes timeValue += ((seconds < 10) ? ":0" : ":") + seconds window.status = timeValue; timerID = setTimeout("showtime()",1000); timerRunning = true; } function startclock () { stopclock(); showtime(); } window.onLoad=showtime() </SCRIPT> <script type="text/javascript"> /*********************************************** * Image w/ description tooltip- By Dynamic Web Coding (www.dyn-web.com) * Copyright 2002-2007 by Sharon Paine * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ /* IMPORTANT: Put script after tooltip div or put tooltip div just before </BODY>. */ var dom = (document.getElementById) ? true : false; var ns5 = (!document.all && dom || window.opera) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false; var origWidth, origHeight; // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 160; var offX= 20; // how far from mouse to show tip var offY= 12; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#FFFFFF"; var tipBorderColor= "#000080"; var tipBorderWidth= 0; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // optional: bgColor and color to be sent to tooltip messages[0] = new Array('../vana-viru.gif',"Tallinn, Vana-Viru 3; +372 6411788, +372 53896808; tvlkek@tvlkek.ee"); messages[1] = new Array('../vizitka.jpg',"Vana-Viru 3, Tallinn; 6411788, 53896808, tvlkek@tvlkek.ee"); //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i<messages.length; i++) { theImgs[i] = new Image(); theImgs[i].src = messages[i][0]; } } // to layout image and text, 2-row table, image centered in top cell // these go in var tip in doTooltip function // startStr goes before image, midStr goes between image and text var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="'; var midStr = '" border="0"></td></tr><tr><td valign="top">'; var endStr = '</td></tr></table>'; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; } // tooltip width and height var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft; var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = mouseX-(tpWd+offX)+"px"; else tipcss.left = mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = winHt-(tpHt+offY)+"px"; else tipcss.top = mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>') </script> <Style> td, body{ Color: #400000; font-family: verdana, arial, helvetica; font-size:11px;} </Style> </head> <body bgcolor="#FFFFFF" text="#000000" background="canvas.jpg" topmargin="10" leftmargin="5" rightmargin="5"> <p></p> <div align="center"> <div align="center"> <table border="0" height="124" width="752"> <tr> <td height="70" rowspan="3" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"><a href="index.htm"> <img src="../logo_s.jpg" width="204" height="118" align="top" border="0" alt="TVLKEK"></a></td> <td height="22" colspan="2" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="right"> <font face="Verdana, Arial, Helvetica, sans-serif" style="font-size: 9pt"><strong> 8F5=78<span lang="ru">8</span> <8=8AB5@AB20 >1@07>20=8O nr 3801HTM</strong></font><strong><font face="Verdana, Arial, Helvetica, sans-serif" style="font-size: 9pt"><span lang="ru"> 8 4705</span>HTM</font></strong></div></td> </tr> <tr> <td height="41" colspan="2" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="right"> <a href="kontakt.htm"onmouseover="doTooltip(event,0)" onmouseout="hideTip()"><img border="0" src="../kunstikeskus.jpg" width="504" height="32"></a></div></td> </tr> <tr> <td height="34" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"> <a href="otdelenija.htm"> <img border="0" src="../nabor2.gif" width="400" height="40"></a></div></td> <td height="34" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="right"><a href="../eestikeeles/Foto.htm"> <img src="est.jpg" width="24" height="18" border="0"></a> <a href="fotografii.htm"> <img src="rus.jpg" width="24" height="18" border="0"></a></div></td> </tr> </table> </div> <div align="center"> <div align="center"> <table width="750" border="0" cellspacing="1" height="62"> <tr align="center" valign="middle"> <td height="51" width="40" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="left"><font size="4"> <a href="o_shkole.htm"> <img src="o_shkole.gif" width="78" height="22" border="0"></a></font></div></td> <td height="51" width="14" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="55" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"> <a href="otdelenija.htm"> <img src="otdelenija.gif" width="102" height="30" border="0"></a></div></td> <td height="51" width="14" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="54" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"><font size="4"> <a href="raboti_uchashihsja.htm"> <img src="raboti.gif" width="85" height="48" border="0"></a></font></div></td> <td height="51" width="14" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="54" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"> <a href="fotografii.htm"> <img border="0" src="fotografii.gif" width="121" height="29"></a></div></td> <td height="51" width="14" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="54" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <a href="konkursi.htm"> <img border="0" src="konkursi.gif" width="98" height="46"></a></td> <td height="51" width="14" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="54" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"><font size="4"> <a href="kontakt.htm"> <img src="adres.gif" width="97" height="29" border="0"></a></font></div></td> <td height="51" width="8" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <font face="Arial" size="3"> |</font></td> <td height="51" width="97" valign="middle" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> <div align="center"> <a href="uchashimsja.htm"> <img src="uchashimsja.gif" width="93" height="25" border="0" align="right" hspace="0"></a></div></td> </tr> <tr align="center" valign="middle"> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> <td height="8" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px; text-align:center"> </td> </tr> </table> <hr> </div> </div> <div align="center"> <table border="0"> <tr> <td height="87" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px" align="center"> <div align="center"> <p align="center" style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('uroki/index1.htm');"> <img border="0" src="../V-klassah.jpg" width="85" height="65"></a></p> <p style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('uroki/index1.htm');"> <img src="../vklassah.gif" width="95" height="25" border="0"></a></p> </div></td> <td height="87" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px" align="center"> <p style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('prosmotr/index.htm');"> <img border="0" src="../prosmotr.jpg" width="115" height="65"></a></p> <p align="center" style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('prosmotr/index.htm');"> <img border="0" src="../prosmotr_foto.gif" width="108" height="28"></a></td> <td height="87" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px" align="center"> <p align="center" style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('123/index.htm');"> <img src="../Rocca-al-mare.jpg" width="86" height="65" border="0"></a></p> <p align="center" style="margin-left: 10px; margin-right: 10px"> <a href="javascript:newwindow('123/index.htm');"> <img src="../naplenere.gif" width="105" height="25" border="0"></a></p> </td> <td height="87" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px" align="center"> <div align="center"> <p align="center" style="margin-left: 10px; margin-right: 10px"> <A HREF="javascript:newwindow('prazdnik/index.htm');"> <img src="../Resizeo5.jpg" width="87" height="65" border="0"></a></p> <p style="margin-left: 10px; margin-right: 10px"> <a href="javascript:newwindow('prazdnik/index.htm');"> <img src="../prazdniki.gif" width="103" height="32" border="0"></a></p> </div></td> </tr> </table> <p style="margin: 0 10px">&nbsp;</p> <table border="0" width="700"> <tr> <td width="348" align="center" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px"> <a href="http://www.tvlkek.ee/videofilm_0004-1.wmv" rel="vidbox width height" title="TVLKEK"> <img src="../video-kadr.jpg" width="192" height="144" border="0" /></a> <p> &nbsp;<a href="http://www.tvlkek.ee/videofilm_0004-1.wmv" rel="vidbox width height" title="TVLKEK"><img src="../video.gif" width="270" height="76" border="0" /></a></p> </td> <td width="348" valign="top" style="color: #400000; font-family: verdana, arial, helvetica; font-size: 11px"> <p align="center"> <a href="http://www.tvlkek.ee/sobranie-deti_mladshie.wmv" rel="vidbox width height" title="TVLKEK"> <img border="0" src="../video-deti-2%20klass.jpg" width="192" height="144"></p> <p align="center"> <img border="0" src="../video-deti.gif" width="319" height="73"></td> </tr> </table> <p style="margin-top: 0; margin-bottom: 0"><font size="-1" color="#800000"> <b>;O ?@028;L=>3> DC=:F8>=8@>20=8O @0745;0 =5>1E>48<> @07@5H8BL Java A:@8?BK 4;O MB>3> A09B0.</b></font></p> <p>&nbsp;</div> <div align="center"> <table width="749" border="0" height="27"> <tr> <td width="743" align="right" valign="middle"> <script language="JavaScript"><!-- var dateMod = "" ;dateMod = document.lastModified ;document.write("Last Update: "); document.write(dateMod); document.write(); // --></script> </td> </tr> </table></div> <div> <div align="left"> <a href="http://t.extreme-dm.com/?login=tvlkek" target="_top"> <img src="http://t1.extreme-dm.com/i.gif" name="EXim" border="0" height="38" width="41" alt="eXTReMe Tracker"></img></a> <script type="text/javascript" language="javascript1.2"><!-- EXs=screen;EXw=EXs.width;navigator.appName!="Netscape"? EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//--> </script> <script type="text/javascript"><!-- var EXlogin='tvlkek' // Login var EXvsrv='s9' // VServer navigator.javaEnabled()==1?EXjv="y":EXjv="n"; EXd=document;EXw?"":EXw="na";EXb?"":EXb="na"; EXd.write("<img src=\"http://e0.extreme-dm.com", "/"+EXvsrv+".g?login="+EXlogin+"&amp;", "jv="+EXjv+"&amp;j=y&amp;srw="+EXw+"&amp;srb="+EXb+"&amp;", "l="+escape(EXd.referrer)+"\" height=1 width=1>");//--> </script> <noscript><img height="1" width="1" alt="" src="http://e0.extreme-dm.com/s9.g?login=tvlkek&amp;j=n&amp;jv=n"/> </noscript></div></div> </div> </body> </html>