// 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 show_flash(url,id,w,h,wmode){
        return "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width="+w+" height="+h+" id="+id+"><param name=wmode value="+wmode+" /><param name=movie value="+url+" /><param name=quality value=high /><embed src="+url+" quality=high wmode="+wmode+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>";
}


function show_embed(url,w,h){
        return "<embed src="+url+" type='application/x-shockwave-flash' width="+w+" height="+h+">";
}

// write document contents
function documentwrite(str){
        document.write(str);
}