// Hide these elements until the flash is loaded.
document.write('<style type="text/css" media="screen">');
document.write('#webcast {visibility: hidden;} #no_flash {visibility: hidden; display: none;');
document.write('</style>');


function doWebcastReplace(){
	var b = document.getElementById("webcast");
	var nf = document.getElementById("no_flash");

	var w = 320;
	var h = 300;
	
	//var slideURL = "/flashdata/quotes.html";	
	writeFlash(b, "webcast/pgc_webcast.swf", w, h);
	
	if(MM_FlashCanPlay){
		 nf.style.visibility = "hidden";
		 nf.style.display = "none";
	}else{
		nf.style.visibility = "visible";
		nf.style.display = "block";
	}
}

EventUtils.addEventListener(window,'load',doWebcastReplace);
