/****************************************************************************
* 2styles.js
* Because of different font sizes on MS IE and NN use different style definitions
* author: info@vsn-munich.de
*
* produced by VSN VISUAL SOLUTIONS NETWORK GBR
* http://www.vsn-munich.de
*
* version: 1.02    date: 2002-07-10
***************************************************************************/

window.onerror = null

styleStr = "<link rel='stylesheet' type='text/css' href='scripts/"
var b = navigator.userAgent.toLowerCase()
//use smaller fonts on IE, NN6 and all MAC-browsers
if (b.indexOf("msie") != -1 || b.indexOf("mac") != -1 || (b.indexOf("netscape") != -1 && b.indexOf("6") != -1)) styleStr += "small.css'>"
// otherwise use larger fonts
else styleStr += "large.css'>"
// IMPORTANT: "hide" the CSS link in a string because of the Navigator Line Break Bug!
document.write(styleStr)
