﻿function fontAdjust(doThis)
{	if(document.getElementById('contentBody'))
	{ 	contentPart = document.getElementById('contentBody');
		if((fontResizeCount > 1 || doThis=='plus')&&(fontResizeCount < 15 || doThis=='min'))
		{
		    fontAdjustForChild(doThis, contentPart);
		    if(doThis=='plus' ) { fontResizeCount++; }
    		if(doThis=='min' ) 	{ fontResizeCount--; }
		}
	}
}

function fontAdjustSiteMap(doThis)
{	if(document.getElementById('contentBody'))
	{ 	contentPart = document.getElementById('contentBody');
		if((fontResizeCount > 1 || doThis=='plus')&&(fontResizeCount < 11 || doThis=='min'))
		{
		    fontAdjustForChild(doThis, contentPart);
		    if(doThis=='plus' ) { fontResizeCount++; }
    		if(doThis=='min' ) 	{ fontResizeCount--; }
		}
	}
}

var fontResizeCount = 5;

function fontAdjustForChild(doThis, innerContent)
{	
    if(innerContent && innerContent.id != 'tools')
	{ 	
        var actualSize;
        if(BrowserDetect.browser == 'Explorer')
        {
            if(innerContent.children)
            {
                var i=0;
                for (i=0; i<innerContent.children.length; i++) 
		       {
		            fontAdjustForChild(doThis, innerContent.children[i]);
		       }
            }
        
		    actualSize = parseInt(innerContent.currentStyle.fontSize);
		    if(doThis=='plus' ) 	
		    { 
		        newSize = actualSize + 1;
		        
		    }
		    if(doThis=='min' && actualSize>1) 	
		    { 
		        newSize = actualSize - 1;
		        
		    }
    		
		    innerContent.style.fontSize = newSize + 'px' ; 
		}
		else	
		{ 
            var currentRule;
            var actualHeight;
            var currentSelectorText = '.' + innerContent.className;
	        for(j=0; j<this.document.styleSheets[0].cssRules.length; j++)
            {
                
                    currentRule = this.document.styleSheets[0].cssRules[j];
                    actualSize = parseInt(currentRule.style.fontSize);
                    actualHeight = parseInt(currentRule.style.height);
                    
                    if(actualSize)
		            {
		                if(doThis=='plus' ) 	
		                { 
		                    newSize = actualSize + 1;
		                    
		                }
		                if(doThis=='min' && actualSize>1) 	
		                { 
		                    newSize = actualSize - 1;
		                   
		                }
                		
		                currentRule.style.fontSize = newSize + 'px' ; 
		            }
		            if(actualHeight)
		            {
		                if(doThis=='plus' ) 	
		                { 
		                    newHeight = actualHeight + 1;
		                }
		                if(doThis=='min' && actualHeight>1) 	
		                { 
		                    newHeight = actualHeight - 1;
		                }
                		
		                currentRule.style.height = newHeight + 'px' ;
		            }
            }
		}
		
		
	}
}

function OpenPopup (c) 
{
window.open(c,
'window',
'width=810,height=500,scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0');
}

function openKiaShop () 
{
	window.open('http://udstyr.kiamotors.dk/','_blank','scrollbars=yes,resizable=yes,toolbar=yes,directories=yes,location=yes,menubar=yes,status=yes,left=0,top=0');
}

function openNewsURL () 
{
	window.open('http://campaigns.emailserver2.com/mmm/webform/webform86371.asp','_blank','scrollbars=yes,resizable=yes,toolbar=yes,directories=yes,location=yes,menubar=yes,status=yes,left=0,top=0');
}

//Browser Detect
var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
