function insert_swf(mc, width, height, bgcolor) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" id="scroller">\n');
	document.write('<param name="movie" value="'+mc+'">\n');
	document.write('<param name="bgcolor" value="#'+bgcolor+'">\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="'+mc+'" quality="high" bgcolor="#'+bgcolor+'" width="'+width+'" height="'+height+'" name="preso" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</embed>\n');
	document.write('</object>\n');
}	

function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) {
	win.window.focus();
	}
}
