/***********************************************
* Different CSS depending on OS (mac/pc)- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
* Added functionality by Felix | http://www.scl.co.uk
***********************************************/

var csstype="inline" //Specify type of CSS to use. "Inline" or "external"

var mac_css='body{font-size: 14px; }' //if "inline", specify mac css here
var pc_css='body{font-size: 16px; }' //if "inline", specify PC/default css here
var mo_css='body{font-size: 12px; }' //if "inline", specify mac opera css here

///////No need to edit beyond here////////////

var mactest=(navigator.userAgent.indexOf("Mac")!=-1) || 
			( 
				(navigator.userAgent.indexOf("Opera")!=-1) && 
				( (navigator.userAgent.indexOf("Linux")!=-1) || (navigator.userAgent.indexOf("Ubuntu")!=-1) )
			)
			


if (csstype=="inline")
{
	document.write('<style type="text/css">')
	
	if (mactest)
		document.write(mac_css)
		
	
	
	else
		document.write(pc_css)
		
	document.write('</style>')

}
else if (csstype=="external")
	document.write('<link rel="stylesheet" type="text/css" href="'+ (mactest? mac_externalcss : pc_externalcss) +'">')
