﻿

function listen_sermon(the_page) {
	//newwin = window.open(the_page,'','top=150,left=150,width=250,height=270,location=no');
	newwin = window.open(the_page,'','toolbars=no,menubar=no,location=no,scrollbars=no,resizable=no,top=150,left=150,width=250,height=270');
	if (!newwin.opener) newwin.opener = self;
	//window.open(the_page); // params and stuff
}

function listen(the_title, the_http, the_date, the_speaker, the_topic, the_biblevers) {
	newwin = window.open('','','top=150,left=150,width=250,height=270,location=no');
	if (!newwin.opener) newwin.opener = self;
	with (newwin.document)
	{
	open();
	write('<html>');
	write('<head><title>北歐華人基督教會斯德哥爾摩福音堂 - Scandinavia Chinese Christian Church in Stockholm, Sweden</title></head>');
	write('<body background="../images/bg.gif" onLoad="document.form.box.focus()">');
	write('<table width="230" border="0" cellspacing="0" cellpadding="0" height="1" align="center"><tr><td background="../images/1x1.gif"><img src="../images/1x1.gif" width="1" height="1"></td></tr></table>');
	write('<table bgcolor="white" border="0" cellspacing="0" cellpadding="0" width="100%">');
	write('<tr><td background="../images/1x1.gif" width="1"><img src="../images/1x1.gif" width="1" height="1"></td><td>');
	write('<table bgcolor="white" border="0" cellspacing="5" cellpadding="0" width="100%">');
	if (the_title != null) 	
		write('<tr bordercolor="#A9AB87"><td bgcolor="#E7ECEF" height="20" bordercolor="#E7ECEF" class="text"><font size="2"/><b>&nbsp;' + the_title + '</b></td></tr>');
	else 
		write('<tr bordercolor="#A9AB87"><td bgcolor="#E7ECEF" height="20" bordercolor="#E7ECEF" class="text"><font size="2"/><b>&nbsp;</b></td></tr>');
	if (the_http != null && the_http != "") 		
		write('<tr><td valign="top" align="right"><font size="2"/><a href="' + the_http + '">下載收聽</a></td></tr>');
	if (the_http != null && the_http != "") 		
		write('<tr><td><embed src="' + the_http + '" autostart="true" loop="false" volume="100" width="218" height="60"/></td></tr>');
	if (the_date != null && the_date != "") 		
		write('<tr><td valign="top"><font size="2"/>日期: ' + the_date + '</td></tr>');
	if (the_speaker != null && the_speaker != "") 	
		write('<tr><td valign="top"><font size="2"/>講員: ' + the_speaker + '</td></tr>');
	if (the_topic != null && the_topic != "") 		
		write('<tr><td valign="top"><font size="2"/>講題: ' + the_topic + '</td></tr>');
	if (the_biblevers != null && the_biblevers != "") 
		write('<tr><td valign="top"><font size="2"/>經文: ' + the_biblevers + '</td></tr>');
	write('<tr><td><br/><input type="button" value="關閉/Close" onClick="window.close()"/></td></tr>');
	write('</table></td><td background="../images/1x1.gif" width="1"><img src="../images/1x1.gif" width="1" height="1"></td><td>');
	write('</tr></table>');
	write('<table width="230" border="0" cellspacing="0" cellpadding="0" height="1" align="center"><tr><td background="../images/1x1.gif"><img src="../images/1x1.gif" width="1" height="1"></td></tr></table>');
	write('</body></html>');
	close();
   	}
}


