function mp4(file, width, height, autoplay, controller){
    document.write("<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='" + width + "' height='" + height + "'>");
	document.write("<param name='src' value='" + file +"'>");
	document.write("<param name='autoplay' value='" + autoplay +"'>");
    document.write("<param name='controller' value='" + controller +"'>");
    document.write("<embed src='" + file + "' controller='" + controller + "' autoplay='" + autoplay + "' pluginspage='http://www.apple.com/quicktime/download/' type='video/quicktime' width='" + width + "' height='" + height + "'></embed>");
    document.write("</object>");
}
