function browserclass () 
{
//If the browser is Internet Explorer on Mac then use class text_about, else use class text_wrap
    var isIE  = (navigator.appName == "Microsoft Internet Explorer");
    var isMac = (navigator.userAgent.indexOf("Mac") != -1);
    if (isMac && isIE) 
    {
        document.write("<p class='text_about'>") 
    } else {
        document.write("<p class='text_wrap'>") 
    }
}

function writeP ()
{
	document.write("</p>")
}
