
function resizeNavigation() {
	var top = 100 + 1;
	var height = 0; 
	
	if (self.innerHeight) {
		height = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight) {
		height = document.documentElement.clientHeight;
	}
	else if (document.body) {
		height = document.body.clientHeight;
	}
	
	if (height == 0) {
		menu = "100%";
	}
	else {
		menu = (height - top) + "px";
	}
	document.getElementById("navi").style.height = menu;
}

function convert2comma(zahl) {

	zahl = zahl.replace(/\./,",");
	return zahl;
	}


function AddToBasket(inIsbn13, srcID, hasPriceA, inPriceA, inTitle)
	{
		inPriceA = convert2comma(inPriceA);
		document.getElementById('wk').src = 'http://www.buchhandel.de/WebApi1/Warenkorb.asp?Func=AddToBasket&Caller=130148&Isbn=' + inIsbn13 + '&SrcID=' + inIsbn13 +'&hasPriceA=' + hasPriceA + '&PriceA=' + inPriceA + '&Title=' + inTitle ;
	}
