
function createQuickTimeObject(div,filetoplay){

// filetoplay = '/img/102092.avi';

/* var myObject = document.createElement('embed');

myObject.setAttribute("width", "480");

myObject.setAttribute("height", "376");

myObject.setAttribute("qtsrc", filetoplay);

myObject.setAttribute("src", filetoplay);

myObject.setAttribute("type", "video/quicktime");

myObject.setAttribute("scale", "aspect");

myObject.setAttribute("kioskmode", "true");

myObject.setAttribute("autoplay", "true");

myObject.setAttribute("loop", "true"); */

var myObject = document.createElement('div');

myObject.innerHTML = '<embed src="'+filetoplay+'" width="480" height="376" qtsrc="'+filetoplay+'" type="video/quicktime" scale="aspect" kioskmode="false" autoplay="true" loop="true"></embed>';

while (div.childNodes.length >= 1) {

div.removeChild(div.firstChild);

}

div.appendChild(myObject);

}
