function writePromo(){
var str='';
var mediaURL = 'http:\/\/www.oprah.com\/flashdata.jsp?type=mediainput&id='+mediaID+'&xpath=/';
if(mediaID == '') {
	str='Error No MediaInput defined. Please make sure the path to this .js includes ?media=mediaInputId at the end.';
}	else {
str+='<div id="emb_div">This page requires Flash 9. Download it <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="ext">here</a>.';
str+='<script type="text\/javascript">';
str+='var emb = new SWFObject("http:\/\/static.oprah.com\/flash\/player\/promo_player.swf", "embedPlayer", "'+playerWidth+'", "'+playerHeight+'", "9.0.115");';
str+='emb.addParam("wmode", "transparent");';
str+='emb.addParam("allowScriptAccess", "always");';
str+='emb.addParam("scale", "noscale");';
str+='emb.addVariable("mediaXML","'+escape(mediaURL)+'");';
str+='emb.useExpressInstall("http:\/\/static.oprah.com\/flash\/expressinstall\/expressinstall.swf");';
str+='emb.write("emb_div");';
str+='<\/script>';
str+='<\/div>';
}
document.write(str);
}
writePromo();