function testing(){
	alert("test");
}

function RunIEFix(swfname, mwidth, mheight, locparamst)
// to work around IE changes that require users to click on embedded flash content to make it active
{
	var nnst  = "<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ";
    nnst += " codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' ";
    nnst += " ID=" + swfname + " WIDTH=" + mwidth + " HEIGHT=" + mheight + " ALIGN=''>";
    nnst += " <PARAM NAME=movie VALUE=" + swfname + ".swf" + locparamst + ">";
    nnst += " <PARAM NAME=quality VALUE=high>";
    nnst += " <PARAM NAME=scale VALUE=noborder>";
    nnst += " <PARAM NAME=bgcolor VALUE=#FFFFFF>";
    nnst += " <EMBED src=" + swfname + ".swf" + locparamst;
    nnst += " quality=high scale=noborder bgcolor=#FFFFFF";
    nnst += " WIDTH=" + mwidth + " HEIGHT=" + mheight + " swLiveConnect=true ID=" + swfname + " NAME=" + swfname + " ALIGN='' ";
    nnst += " TYPE='application/x-shockwave-flash' ";
    nnst += " PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED></OBJECT>";

  	document.write(nnst);	
}

