var tag_pre = '<style type="text/css">';
var tag_suf = '</style>';

//Windows
if(is_win) {
	//IE 4 (and above)
	if (ua_IE4x) {
		document.write(tag_pre + '*{font-size:x-small;}' + tag_suf);
	}
	// Netscape 4 (and above)
	else if (ua_NS4x) {
		document.write(tag_pre + '*{font-size:small;}' + tag_suf);
	}
	// Netscape 6 (and above) & MOZILLA
	else if (ua_NS6x || ua_MOZ) {
		document.write(tag_pre + '*{font-size:small;}' + tag_suf);
	}
}

//Macintosh
if(is_mac) {
	//Safari
	if(ua_SAFARI) {
		document.write(tag_pre + '*{font-size:small;}' + tag_suf);
	}
	//IE 4 (and above)
	else if (ua_IE5x) {
		document.write(tag_pre + '*{font-size:x-small;}' + tag_suf);
	}
	// Netscape  (and above)
	else if (ua_NS4x) {
		document.write(tag_pre + '*{font-size:medium;}' + tag_suf);
	}
	// Netscape 6 (and above) & MOZILLA
	else if (ua_NS6x || ua_MOZ) {
		document.write(tag_pre + '*{font-size:medium;}' + tag_suf);
	}
}
