// NOTE: browser.js must be "in place" before this code can be inserted.

function load_css_common(base)
{
	var href = base + "/common_default.css";
	if (is_ie5)
		href = base + "/common_ie5.css";
	document.write('<link rel="stylesheet" type="text/css" href="' + href + '">');
}

function load_css_home(base)
{
	var href = base + "/home_default.css";
	if (is_ie5)
		href = base + "/home_ie5.css";
	document.write('<link rel="stylesheet" type="text/css" href="' + href + '">');
}

