function NewWindow(mypage,myname,w,h,scroll){
  left = (screen.width) ? (screen.width-w)/2 : 0;
  top = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'innerHeight='+h+',innerWidth='+w+',scrollbars='+scroll+',left='+left+',top='+top+'resizable';
  newwin = window.open(mypage,myname,settings);
}

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);
}


