// JavaScript Document
// external_script.js
function CreateControl(DivID, CLSID, ObjectID,
                       WIDTH, HEIGHT, URL, TRANS)
{
  //var d = document.getElementById(DivID);

  DivID.innerHTML = 
    '<object classid=' + CLSID + ' id=' + ObjectID + ' width=' + WIDTH + ' height=' + HEIGHT +'>'+
	'<param name="movie" value="' + URL + '">'+
	'<param name="wmode" value='+TRANS+'>'+
	'<param name="type" value="application/x-shockwave-flash">'+
    '<embed src="'+URL+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"'+
    'type="application/x-shockwave-flash"  width=' + WIDTH + ' height=' + HEIGHT +' wmode='+TRANS+'></embed>';
}


function mfocus()
{
	document.getElementById("flashnavigation").focus();
	//document.getElementById("f_navigation").focus();
}

function setFocusOnFlash()
{
	var myFlash = document.getElementById( 'f_navigation' );
	if ( myFlash ) { myFlash.focus(); }
}
