/*
	Software Copyright (c) 1985-2006 Information Transfer LLP
	Seminar 6.1.1.160
	Flash ActiveX activation support

		divID  : string, ID of containing div
		width  : integer, pixel dimension
		height : integer, pixels
		movie  : string, name of swf file
		quality: integer
		menu   : wordbool
		scale  : string
		loop   : wordbool
		vmode  : string

*/

function axFlash(divID,width,height,movie,quality,menu,scale,loop,vmode)
{
	var d = document.getElementById(divID);
	var myFlash = document.createElement('object');
	d.appendChild(myFlash);
	myFlash.width = width;
	myFlash.height = height;
	myFlash.classid = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";
	myFlash.codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=458752,0,0,0";
	myFlash.movie = movie;
	myFlash.quality = quality;
	myFlash.menu = menu;
	myFlash.scale = scale;
	myFlash.loop = loop;
	myFlash.vmode = vmode;
}	
