﻿function createplayer(go,url,img) { 
 	document.getElementById("wrapper").style.top=69+"px"; 
  	 theFile=img;  
 
    var theWidth=294; 
	var theHeight=250; 
    var theDisplayheight=250;
 	
 	var s = new SWFObject("flash/mediaplayer.swf", "playerID", theWidth, theHeight, "7");
	s.addParam("allowfullscreen", "true");
	s.addVariable("usefullscreen","true");
	s.addVariable("file", encodeURIComponent(url));
	s.addVariable("width", theWidth);
	s.addVariable("height", theHeight);
	s.addVariable("displayheight", theDisplayheight);
	s.addVariable("overstretch", "fit");
	s.addVariable("showicons", true);
	//s.addVariable("quality", "high"); 
	s.addParam('allowscriptaccess','always'); 
	s.addParam('stretching','fill');  
	s.addVariable("shuffle","false"); 
	s.addVariable("enablejs","true"); 
	s.addVariable("javascriptid","playerID"); 

	 s.addVariable("image",  theFile);
	if (go) { s.addVariable("autostart", "true"); }
	s.write("placeholder"); 
	//alert(document.getElementById("placeholder").innerHTML);
}
function setAsHomePage(i)
{	
	if (document.all) {
		i.style.behavior='url(#default#homepage)';
		i.setHomePage('http://baolua.com');
	}
	return false;
}
