function NSInstall() 
{  
	if(navigator.appName=="Netscape")
	{
		xpi={'StreamPlug Video Player (win32)':'http://www.streamplug.com/StreamPlug/beta/SPMozwin32.xpi'};
		InstallTrigger.install(xpi);
	}
}

function IEIsStreamPlugInstalled()
{

     try
     {
	  sptext 		= new ActiveXObject("cedelia.StreamPlug");
     }
     catch (e)
     {
	  return false;
     }
     return true;


}
function PutStreamPlug(w,h)
{

	if(navigator.appName=="Netscape")
	{
		document.write("<EMBED pluginspage=http://www.frommetosanta.com/index.php type=application/x-OGM name=StreamPlugNs width=",w," height=",h," >")
	}
	else if(navigator.appName=="Microsoft Internet Explorer")
	{
		document.write("<OBJECT ID=StreamPlugIe WIDTH=",w," HEIGHT=",h," codebase='http://www.streamplug.com/StreamPlug/beta/SP.cab' CLASSID='CLSID:2019DC25-D1C0-11D6-97B3-0008A124F542'></OBJECT>");
	}
	else
	{
		document.write("<p>Browser Not Supported</p>");
	}
}
