// JavaScript Document
function showFlash(width, height){
    var parentDiv = document.all ? document.all["flashDiv"] : document.getElementById("flashDiv");
	var html = '<div><object width="'+width+'" height="'+height+'">' ;
	html += '<param name="movie" value="http://www.youtube.com/v/FujYtmVN7i4&rel=0&border=1&color1=0x014f5f&color2=0x05818f&autoplay=1"></param>' ;
	html += '<param name="wmode" value="transparent"></params>';
	html += '<embed src="http://www.youtube.com/v/FujYtmVN7i4&rel=0&border=1&color1=0x014f5f&color2=0x05818f&autoplay=1" type="application/x-shockwave-flash" wmode="transparent"width="'+width+'" height="'+height+'"></embed>';
	html += '</object></div>';		
    parentDiv.innerHTML = html;
	
}
