function getFavorites() {

	curData = new Array();
	
	for (i=0; i < 10; i++) {
	
		curObj = new Object();
		curObj.title = "External Title " + i;
		curObj.detail = "<b>External Detail " + i +"</b><br/>text text text";
		curObj.href = "http://www.imc2.com/";
		curObj.target = "_self";
		
		curData.push(curObj);

	
	}

	return curData;
}

function findMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

document.write("<object");
document.write("	align=\"middle\"");
document.write("	classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"");
document.write("	codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\"");
document.write("	height=\"640\"");
document.write("	id=\"HomePage\"");
document.write("	width=\"1000\"");
document.write("	>");
document.write("	<param name=\"allowScriptAccess\" value=\"always\" />");
document.write("	<param name=\"bgcolor\" value=\"#7f0003\" />");
document.write("	<param name=\"FlashVars\" value=\"isLive=true&xmlPath=homepage/build/mm/Home/xml/data.xml&americasFavsPath=homepage/build/mm/Home/xml/americasFavs.xml&dunkersPath=homepage/build/mm/Home/bin/PHdunkers.swf&dunkersLink=http://www.google.com\" />");
document.write("	<param name=\"movie\" value=\"homepage/build/mm/Home/HomePage.swf\" />");
document.write("	<param name=\"quality\" value=\"high\" />");
document.write("	<param name=\"wmode\" value=\"transparent\" />");
document.write("	<embed");
document.write("		align=\"middle\"");
document.write("		allowScriptAccess=\"always\"");
document.write("		bgcolor=\"#7f0003\"");
document.write("		FlashVars=\"isLive=true&xmlPath=homepage/build/mm/Home/xml/data.xml&americasFavsPath=homepage/build/mm/Home/xml/americasFavs.xml&dunkersPath=homepage/build/mm/Home/bin/PHdunkers.swf&dunkersLink=http://www.google.com\"");
document.write("		height=\"640\"");
document.write("		name=\"HomePage\"");
document.write("		pluginspage=\"http://www.macromedia.com/go/getflashplayer\"");
document.write("		quality=\"high\"");
document.write("		src=\"homepage/build/mm/Home/HomePage.swf\"");
document.write("		type=\"application/x-shockwave-flash\"");
document.write("		width=\"1000\"");
document.write("		wmode=\"transparent\"");
document.write("		/>");
document.write("</object>");