function loadflash(file, width, height) {
	/*flashObject = document.createElement('object');
	flashObject.width = width;
	flashObject.height = height;
	flashObject.type = "application/x-shockwave-flash";
	flashObject.data = file;
	try {
		param1 = document.createElement('<param name="movie" value="'+file+'"/>')
	} catch(e) {
		param1 = document.createElement('param');
		param1.name = "movie";
		param1.value = file;
	}
	flashObject.appendChild(param1);
	try {
		param2 = document.createElement('<param name="quality" value="high"/>');
	} catch (e) {
		param2 = document.createElement('param');
		param2.name = "quality";
		param2.value = "high";
	}
	flashObject.appendChild(param2);
	try {
		param3 = document.createElement('<param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"/>');
	} catch (e) {
		param3 = document.createElement('param');
		param3.name = "pluginspage";
		param3.value = "http://www.macromedia.com/go/getflashplayer";
		param3.type = "application/x-shockwave-flash";
	}
	flashObject.appendChild(param3);
	parent.appendChild (flashObject);*/
	document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+width+'" height="'+height+'">');
	document.write('<param name="movie" value="'+file+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" />');
	document.write('</object>');
}
