//CSS link
mac = (navigator.userAgent.indexOf('Mac') != -1)
ie5 = (navigator.userAgent.indexOf('MSIE 5') != -1)
ns6 = (navigator.userAgent.indexOf('Netscape') != -1 && parseInt(navigator.appVersion) >= 5)

if (mac && !ie5 && !ns6){
	var cssLink = "<link type=\"text/css\" href=\"" + getBaseUrl() + "css/vodafone_mac.css\" rel=\"stylesheet\"/>"
	} else {
	var cssLink = "<link type=\"text/css\" href=\"" + getBaseUrl() + "css/vodafone.css\" rel=\"stylesheet\"/>"
}	
document.write(cssLink)
document.close()
//end CSS link
