function uusaken(viide,pealkiri,tekst)
{
OpenWindow=window.open("", "newwin", "height=304,width=340,left=50, top=100,toolbar=no,scrollbars=no,location=no, menubar=no");
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<HEAD>")
OpenWindow.document.write('<link type="text/css" href="style.css" rel="stylesheet">')
OpenWindow.document.write('<TITLE>'+pealkiri+'</TITLE>')
OpenWindow.document.write("</HEAD>")
OpenWindow.document.write('<BODY BGCOLOR="#DDD0BB">')
OpenWindow.document.write('<object height="264" width="320">')
OpenWindow.document.write('<param name="movie" value="http://www.youtube.com/v/'+viide+'&autoplay=1">')
OpenWindow.document.write('<embed src="http://www.youtube.com/v/'+viide+'&autoplay=1" type="application/x-shockwave-flash" height="264" width="320">')
OpenWindow.document.write("</object>")
OpenWindow.document.write('<table style="width: 320px;" border="1"><tr class="ridahall tillu"><td>')
OpenWindow.document.write(tekst)
OpenWindow.document.write('</td></tr><table>')
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
self.name="main"
}