var state = new Array();
var click;

function clickable(st) {
	if (st==false) {click=false;} else {click=true;}
}

function calculate_cost(type,cost,base,floorage,price,company,property) {
	var calculator = null;
	var width;
	var height;
	if(type=='m') {
	width = 280;
	height = 200;
	} else if(type=='p') {
	width = 400;
	height = 460;	
	}
	var left = parseInt((screen.availWidth/2) - (width/2))+200;
    var top = parseInt((screen.availHeight/2) - (height/2));
calculator = window.open('calculator.html?type='+type+'&cost='+cost+'&base='+base+'&floorage='+floorage+'&price='+price+'&company='+company+'&prop='+property,'company','width='+width+',height='+height+',toolbar=0,top='+top+',left='+left+',menubar=0,scrollbars=0,status=0,resizable=0');
	calculator.focus();
}

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();

function ie6hovIn(row) {
if(BrowserDetect.browser=='Explorer'&&BrowserDetect.version<=6) {
	if(document.getElementById('row-'+row+'').className=='ap-prices-row')
		{
			document.getElementById('tool-'+row+'').style.display='block';
			document.getElementById('row-'+row+'').style.overflow='hidden';
		}
	}
}

function ie6hovOut(row) {
if(BrowserDetect.browser=='Explorer'&&BrowserDetect.version<=6) {
	document.getElementById('tool-'+row+'').style.display='none';
	}
}

function remT(row) {
if(BrowserDetect.browser=='Explorer'&&BrowserDetect.version<=6) {
	document.getElementById('tool-'+row+'').style.display='none';
	}
}

function expand_collapse(row) {
	checkActiveHeight(900);
	scrolling_area.refreshHeight('active','content');
	
if (document.getElementById('row-'+row+'')) {
	if(state[row]==1) 
		{
			if (click==true) {
							state[row]=0;
							document.getElementById('row-'+row+'').className = 'ap-prices-row';
							document.getElementById('dyn-'+row+'').className = 'h';
			}
		} 
		else 
		{
			state[row]=1;
			document.getElementById('row-'+row+'').className = 'ap-prices-row-exp';
			document.getElementById('dyn-'+row+'').className = 'v';
		}
}
}
