function WriteVideo(url){
	document.write("<object id=\"mediaPlayer\" class=\"biglScreen\" classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\">");
	document.write("<PARAM NAME=\"URL\" VALUE=\""+url+"\">");
	document.write("<PARAM NAME=\"animationatStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"transparentatStart\" VALUE=\"false\">");
	document.write("<param name=\"stretchToFit\" value=\"true\" />");
	document.write("<PARAM NAME=\"autoStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"showControls\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"ShowAudioControls\" VALUE=\"true\">");
	document.write("</OBJECT>");
}

function WriteFlash(url,width,height,vars){
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\"flashid\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\""+url+"\" />");
	document.write("<param name=\"menu\" value=\"false\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"transparent\" />");
	document.write("<param name=\"bgcolor\" value=\"#666666\" />");
	document.write("<param name=\"FlashVars\" value=\""+vars+"\" />");
	document.write("<embed src=\""+url+"\" menu=\"false\" quality=\"high\" FlashVars=\""+vars+"\" wmode=\"transparent\" bgcolor=\"#666666\" width=\""+width+"\" height=\""+height+"\" name=\"flashid\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.write("</object>");
}