

/*
 * Load CSS to support JS
 */
loadCss = function(cssFile)
{
	var agt=navigator.userAgent.toLowerCase();

	if (!((-1 != agt.indexOf("msie")) && (-1 != agt.indexOf("mac")))) //Don't bother with IE:Mac.
		document.writeln('<link rel="stylesheet" type="text/css" href="'+cssFile+'" media="screen" />');
}

