// Flash Activating Script
// 2005-12-05
// inome _at_ nhncorp.com
// Don't Edit Below! Never!

// s: source url
// d: flash id
// w: source width
// h: source height
// t: wmode ("" for none, transparent, opaque ...)
function mf(s,w,h,t){
return '<object type="application/x-shockwave-flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width='+w+' height='+h+'><param name="movie" value='+s+'><param name="quality" value="high"><embed src='+s+' width='+w+' height='+h+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object>';
}

// write document contents
function documentwrite(src){
document.write(src);
}

// assign code innerHTML
function setcode(target, code){
target.innerHTML = code;
}
