function pref_html() {
var tableColor;
var zdpattern = /zd/;
var trpattern = /tr/;
// No more flash - removing check.
//if (zdpattern.test(swfSrc)) {
//	tableColor = "#232850";
//} else if (trpattern.test(swfSrc)) {
//	tableColor = "#232850";
//} else {
//	tableColor = "#4B4B4B";
//}
var str;

	str  = "<form name=\"Prefsform\" id=\"Prefsform\">";
	str += "<div id=\"prefFormShell\">";
	str += "<div id=\"prefForm\">";
		str  += "<h3>Choose your player</h3>";
		str  += "In order for you to have the best viewing experience possible, please select your video format:";
		str  += "<p>";
		
			str  += "<b>Real Player</b><br />";
			str  += "<input type=\"radio\" value=\"hiram\" name=\"Radioprefs\" onClick=\"setCookie(\'cnet_newsVideo\', \'hiram\');\" /> 220K (DSL/T-1/Cable)<br />";
		
			str  += "Download Real Player: <br /><a href=\"http://download.com.com/3000-2167-10153493.html\" class=\"zd\">win</a> | <a href=\"http://download.com.com/3000-2174-10164523.html\" class=\"zd\">mac</a> | <a href=\"http://download.com.com/3302-2167-10153493.html\" class=\"zd\">user opinions</a><p>";
		
			str  += "<b>Windows Media Player</b><br />";
			
			str  += "<input type=\"radio\" value=\"hiasf\" name=\"Radioprefs\" onClick=\"setCookie(\'cnet_newsVideo\', \'hiasf\');\" /> 220K (DSL/T-1/Cable)<br />";
		
			str  += "Download Windows Media Player: <br /><a href=\"http://download.com.com/3000-2139-10003947.html?legacy=cnet\" class=\"zd\">win</a> | <a href=\"http://download.com.com/3000-2200-8407127.html\" class=\"zd\">mac</a> | <a href=\"http://download.com.com/3302-2139-5948260.html\" class=\"zd\">user opinions</a><p>";
			
		str  += "Checking one of the buttons above will set a cookie on your system and begin playing the video you requested. You must accept cookies from \".com.com\" to access video.<p><b>Need help?</b><br />If this page just refreshes after you choose your player, make sure you're allowing cookies from \".com.com\".";
	
		str  += "</div><!-- id=\"prefForm\" -->"
		str  += "</div><!-- id=\"prefFormShell\" -->"

		str  += "<div id=\"prefFormFoot\"></div></form>";
		
str  += "<script language=\"JavaScript\">";
str  += "if(savedPrefs != null && typeof savedPrefs != \"undefined\")";
str  += "{";
str  += "for(radionum = 0; radionum < document.Prefsform.Radioprefs.length; radionum++)";
str  += "{";
str  += "if (savedPrefs == document.Prefsform.Radioprefs[radionum].value)";
str  += "{";
str  += "document.Prefsform.Radioprefs[radionum].checked = true;";
str  += "}";
str  += "}";
str  += "}";
str  += "</script>";
str  += "<!-- /bottom -->";
return(str);
}

