<!--
/* Real Media Popup widow JavaScript code */
/* written by David E. Still - Still Designing, LLC */
/* http://stilldesigning.com */
/* Created: 06/14/2002 */
/* Last Modified: 06/14/2002 */

function openRealMedia(sndFile,width,height,videoFlag)
{
	var params = "location=no,directories=no,status=no,scrollbars=auto,toolbar=no,resizable=no,dependent=yes,screenX=150,screenY=150,menubar=no";
	if (!width) width=300;
	if (!height) height=100;
	if (videoFlag)
	{
		windowHeight = height + 100;
		windowWidth = width + 25;
		if (windowWidth < 325) windowWidth = 325;
	} else
	{
		windowHeight = height + 50;
		windowWidth = width + 25;
	}
	soundPopUp = window.open("","smartfrench",params+",width="+windowWidth+",height="+windowHeight);
	soundPopUp.document.writeln("<html><head><title>the Joy House TV Show</title></head></html>");
	soundPopUp.document.writeln("<body bgcolor='#CCCCCC'><center><object id=RVOCX classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' height="+height+" width="+width+"><div align=center>");
    soundPopUp.document.writeln("<param name='console' value='clip1'>");
    soundPopUp.document.writeln("<param name='autostart' value='true'>");
    soundPopUp.document.writeln("<param name='src' value='rtsp://www.thejoyhouse.com"+sndFile+"'>");
	if (videoFlag) soundPopUp.document.writeln("<param name='controls' value='ImageWindow'>");
    soundPopUp.document.write("<embed src='rtsp://www.thejoyhouse.com"+sndFile+"' ");
	if (videoFlag) soundPopUp.document.write("controls='ImageWindow' ");
	soundPopUp.document.writeln("type='audio/x-pn-realaudio-plugin' console='clip1' height="+height+" width="+width+" autostart='true'>");
    soundPopUp.document.writeln("</embed></object>");
	if (videoFlag)
	{
		soundPopUp.document.writeln("<br><object id=RVOCX classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' height=30 width=200>");
   	 	soundPopUp.document.writeln("<param name='console' value='clip1'>");
		soundPopUp.document.writeln("<param name='controls' value='ControlPanel'>");
    	soundPopUp.document.writeln("<EMBED type='audio/x-pn-realaudio-plugin' CONSOLE='Clip1' CONTROLS='ControlPanel' type='audio/x-pn-realaudio-plugin' console='clip1' height=30 width=200 autostart='true'>");
    	soundPopUp.document.writeln("</embed></object>");
	}
    soundPopUp.document.writeln("<br><a href='javascript:this.close()'><font size='-2'>Close This Window</font></a>");
	soundPopUp.document.writeln("</center></body></html>");
}
//-->
