// stubbed out method

function writeListItem(index, xmlLoc) {
	/*document.write ('<div style="width:337px; padding:5px; height:163px; font:11px arial; background-image: url(/shows/events/big_in/2006/images/sample_item.jpg);">');
	document.write ('<span style="background:yellow;">Index: '+index+'<br>xmlLoc:'+xmlLoc+'</span>');
	document.write ('</div>');*/

	var height = 175;
	var width = 350;
	var so = new SWFObject("/shows/events/big_in/2006/swf/big_06_item.swf", "item_"+index, width, height, "7", "#ffffff");
	so.addParam("quality", "high");
	so.addParam("wmode", "opaque");
	so.addParam("flashVars", "xmlLoc=" + xmlLoc + "&index=" + index);
	so.addParam("bgcolor","#000000");
	so.write( "item_"+index);
}