function showflash(detailtype,linkat,vidurl,size){
document.write ('<p><OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="160" HEIGHT="130"');
document.write (' CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
if(detailtype=="sound"){
document.write ('<PARAM name="SRC" VALUE="'+linkat+'mfsound/mp3/'+$vidurl+'.mp3">');
}else{
document.write ('<PARAM name="SRC" VALUE="'+linkat+'films/3gp/'+vidurl+'.3gp">');
}
document.write ('<PARAM name="AUTOPLAY" VALUE="true">');
document.write ('<PARAM name="CONTROLLER" VALUE="false">');
if(detailtype=="sound"){
document.write ('<EMBED SRC="'+linkat+'mfsound/mp3/'+vidurl+'.mp3" ');
}else{
document.write ('<EMBED SRC="'+linkat+'films/3gp/'+vidurl+'.3gp" ');
}
document.write ('WIDTH="160" HEIGHT="130" AUTOPLAY="true" CONTROLLER="false" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
document.write ('</EMBED>');
document.write ('</OBJECT></p>');
}
