
function writeSwf(swfName,w,h) {
	if (typeof(w)=="undefined")w=760;
	if (typeof(h)=="undefined")h=75;
	var s = "<object type=\"application/x-shockwave-flash\" data=\""+swfName+"\" width=\""+w+"\" height=\""+h+"\">";
	s += "<param name=\"movie\" value=\""+swfName+"\"/></object>";
	document.write(s);
}
