<!--
function coronation(coronation) {
var iMyWidth;
var iMyHeight;			
 if (navigator.appName.indexOf("Microsoft")!=-1
  || navigator.appName=="Netscape" 
     && parseInt(navigator.appVersion)>4
 ) {
      iMyWidth = (window.screen.width/2) - (230 + 10)
      iMyHeight = (window.screen.height/2) - (200 + 50)
		    newwindow=window.open('','Window_Title','status,height=400,width=460,resizable=no,left=' + iMyWidth + ',top=' + iMyHeight + ',screenX=' + iMyWidth + ',screenY=' + iMyHeight + ',scrollbars=no') }		
else{
	    	iMyWidth = (window.screen.width/2) - (230 + 10)
      iMyHeight = (window.screen.height/2) - (200 + 50)
		newwindow=window.open('','Window_Title','status,height=400,width=460,resizable=no,left=' + iMyWidth + ',top=' + iMyHeight + ',screenX=' + iMyWidth + ',screenY=' + iMyHeight + ',scrollbars=no') 
      }		
      newwindow.document.write('<html><head><title>' + "Coronation" + '</title></head><center><body BGCOLOR="black"><FONT SIZE="-1" COLOR="WHITE">Coronation of Queen Elizabeth II<BR><BR>')
		newwindow.document.write('<EMBED SRC="' + coronation + '" PLUGINSPAGE="http://quicktime.apple.com" WIDTH=320 HEIGHT=252  CONTROLLER=true LOOP=false AUTOPLAY=true><br><a href="javascript:window.close()">CLOSE THIS WINDOW</a><br><FONT SIZE="-1" COLOR="white">Be patient! This movie may take a while to download<br>because of web traffic or image size.</center>' + '</body></html>')		
      newwindow.document.close();
      }
 -->