
// JavaScript for Buy Direct Advertising, Inc.
// Author: Susan L. Bolander, Webworks7 (www.webworks7.com), except where otherwise noted
// Date: March 2004

<!--

var NewWindow


function MakeNewWindow(title, filename, method)
{

  if (!NewWindow || NewWindow.closed)
  {
    NewWindow = window.open("","","status=0,10,10,dependent=1,scrollbars=0,resizable=0")
  }
 
  NewWindow.resizeTo(400,400)
  
  if (!NewWindow.opener)
  {
    NewWindow.opener = window
  }

var NewContent = ""

NewContent = "<HTML><HEAD><TITLE>Buy Direct Infomercial Cluster Program Samples</TITLE><LINK REL='stylesheet' HREF='../buydirect.css'></HEAD><BODY TOPMARGIN='0' LEFTMARGIN='0' MARGINHEIGHT='0' MARGINWIDTH='0'BGCOLOR='#FFFFFF'><br><CENTER><H1>"

NewContent+=title

if(method=="FastStart")
{
NewContent+="</H1><object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0' height='157' width='160'><param name='src' value='http://www.buydirectadvertising.com/FastStart/"

NewContent+=filename

NewContent+="'><param name='autoplay' value='true'><param name='controller' value='true'><param name='scale' value='tofit'><embed height='157' width='160' pluginspage='http://www.apple.com/quicktime/download/'src='http://www.buydirectadvertising.com/FastStart/"

NewContent+=filename

NewContent+=" 'type='video/quicktime' controller='true' autoplay='true' scale='tofit'></object>"
}

//if(method=="Streaming")
//{
//NewContent+="</H1><object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0' height='157' width='160'><param name='src' value='bogus.mov'><param name='qtsrc' value='rtsp://streaming.infowest.com/"

//NewContent+=filename

//NewContent+="'><param name='controller' value='true'><param name='autoplay' value='true'><embed src='bogus.mov' width='192' height='159' qtsrc='rtsp://streaming.infowest.com/"

//NewContent+=filename

//NewContent+="' autoplay='true' controller='true'></object>"
//}

NewContent+="<P><STRONG>You may use the controls on the bottom<BR>of the video to stop, rewind, restart,<BR>or adjust the volume of the video. The video<BR>should start to play automatically,<BR>but if it does not, please click the Play symbol<BR>(a small triangle to the right of the volume control).</STRONG></P></CENTER></BODY></HTML>"

NewWindow.document.write(NewContent)
NewWindow.moveTo(screen.availWidth/2-200,screen.availHeight/2-175)
NewWindow.document.close()
NewWindow.focus()

}


// -->
