// JavaScript Document

function doShowFlash(path,flashW,flashH)
{
	var contentShow;
	contentShow="";
	contentShow+= "<embed width='"+ flashW +"' height='"+flashH +"'";
	contentShow+= "type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'";
	contentShow+= "quality='high' src='"+path+"' wmode='transparent' allowscriptaccess='always'/>";
	document.write(contentShow);
}
