// JavaScript Document
<!-- Hide script from old browsers
var videoid;
var pageLoadComplete = true;
    function playVideo(vid)
 {
 if(pageLoadComplete != true)
 {
 alert('Please wait while the page loads.')
 return
 }
 ///v/testingess.htm
 str = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">"
 
str +="<html>"
str +="<head>"
str +="<title>Video Player</title>"
str +="</head>"
 
str +="<body leftmargin=\"0\" topmargin=\"0\">"
str +="<div id=\"ssvplayer\" style=\"border: 1px solid #525252; width: 362px;\"></div>"
str +="<scr"+"ipt language=\"javascript\" type=\"text/javascript\" src=\"http://s1.slipstreamvideo.com/player/player.js\"></sc"+"ript>" 
  
win=window.open ("","mywindow","location=1,status=1,scrollbars=1,width=380,height=297"); 
win.document.open() //open document stream
win.document.write(str);
 
 
//str +="<!-- original size is 400 x 300 -->"
str ="<scr"+"ipt language=\"javascript\" type=\"text/javascript\">\n"
str +=" var ssvplayer = new SSVPlayer();"
str +=" ssvplayer.clickToPlay = true;"
str +=" ssvplayer.autoPlay = false;"
str +=" ssvplayer.vwidth = 360;"
str +=" ssvplayer.vheight = 270;"
//str +=" ssvplayer.video = '1457,1483,1455';"
str +=" ssvplayer.video = '"+vid+"';"
str +=" ssvplayer.player_interface = 1;"
str +=" ssvplayer.skin = \"thin\";"
str +=" ssvplayer.load(\"ssvplayer\");"
str +="</scr"+"ipt>"
//str +="<scr"+"ipt language=\"JavaScript\" type=\"text/javascript\">\n"
//str +="<!-- Hide script from old browsers" + \n
//str +="function playVideo()"
//str +=" {  "
//str +="ssvplayer.video = "+vid+";"
//str +="  ssvplayer.load_now('ssvplayer');"
//str +=" }"
//str +="// end hiding script from old browsers -->"
//str +="</scr"+"ipt>"
str +="</body>"
str +="</html>"
 
 
  
  win.document.write(str);
  win.document.close()
 }
// end hiding script from old browsers -->