function sponsoredLinks() {
		/*
		Author: Chris Jason
		Created: 12/5/06
		Used for Quigo Sponsored Links implementation on MyESPN.
		Retrieves colors used on page and passes as URL parameters to
		/myespn/includes/communityAds , which outputs the Quigo code in a formatted <iframe>.
		Tested/working on IE+FF for PC, FF+Safari on Mac.
		*/
		// INITIALIZE VARIABLES
		backColor = null;
		fontColor = null;
		colorSource = null;
		browser = null;
		existingobject = document.getElementById("spl");

		// CLEAR IFRAME CONTENTS IF IT EXISTS
		if (existingobject.childNodes.length > 0) {
			existingobject.removeChild(existingobject.firstChild)
		}

		// RETRIEVE COLORS IN FF. (W/ HEX CONVERSION)
		if( window.getComputedStyle ) {
			browser = "ff";
			fontColor = window.getComputedStyle(document.getElementById('footerIn'),null).color;
			backColor = window.getComputedStyle(document.body,null).backgroundColor;
			colorObj1 = new RGBColor(backColor);
			backColor = colorObj1.toHex();
			colorObj2 = new RGBColor(fontColor);
			fontColor = colorObj2.toHex();
		}
		// RETRIEVE COLORS IN IE
		else if( document.body.currentStyle ) {
			browser = "ie";
			fontColor = document.getElementById('footerIn').currentStyle.color;
			backColor = document.body.currentStyle.backgroundColor;
			// FIX FOR ESPN STYLESHEETS IN IE
			if (backColor == "white") {
				backColor = "#FFFFFF";
			}
			else if (backColor == "transparent") {
				backColor = "#000000";
			}
		}
		// RETRIEVE COLORS IN SAFARI
		else if(document.defaultView.getComputedStyle) {
			browser = "sf";
			fontColor = document.defaultView.getComputedStyle(document.getElementById('footerIn'),null).getPropertyValue('color');
			backColor = document.defaultView.getComputedStyle(document.body,null).getPropertyValue('background-color');
			colorObj1 = new RGBColor(backColor);
			backColor = colorObj1.toHex();
			colorObj2 = new RGBColor(fontColor);
			fontColor = colorObj2.toHex();
		}

	if (browser == "ff" || browser == "ie" || browser == "sf") {
			// BUILD IFRAME FOR SPONSORED LINKS
			iframe = document.createElement("iframe");

			// CREATE URL
			frameUrl = "http://myespn.go.com/myespn/includes/communityAds\?";
			frameUrl += "titleColor="+fontColor+"&bodyColor="+fontColor;
			frameUrl += "&urlColor="+fontColor+"&backColor="+backColor+"&extPadColor="+backColor;
			frameUrl += "&intPadColor="+backColor;

			// REMOVE POUND SIGNS
			frameUrl = frameUrl.replace(/#/g,'')

			// SET ATTRIBUTES IN FF
			iframe.setAttribute('src', frameUrl);
			iframe.setAttribute('frameBorder', '0');
			iframe.setAttribute('marginWidth', '0');
			iframe.setAttribute('marginHeight', '0');
			iframe.setAttribute('scrolling', 'no');
			iframe.setAttribute('width', '738');
			iframe.setAttribute('height', '223');

			// WRITE IFRAME INSIDE DIV
			existingobject.appendChild(iframe);

			// SET ATTRIBUTES IN IE
			iframe.src = frameUrl;
			iframe.style.padding = "0px";
			iframe.style.margin = "0px";

			// SHOW IFRAME
			document.getElementById('spl').style.display = "block";
	}
}