function writeBookLink(book, indiaStr, body, additional) {
	var india = indiaStr == "True" ? true : false;
	var link = "";
	if (book == "ctci") {
		if (india) {
			link = 'http://www.flipkart.com/books/098478280X&&affid=supportcar';
		} else {
			link = 'http://www.amazon.com/gp/product/098478280X/ref=as_li_ss_tl?ie=UTF8&tag=care01-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=098478280X';
		}
	} else if (book == "tgr") {
		if (india) {
			link = 'http://www.flipkart.com/books/0470927623?affid=supportcar';
		} else {
			link = 'http://www.amazon.com/gp/product/0470927623/ref=as_li_ss_tl?ie=UTF8&tag=care01-20&linkCode=as2&camp=217145&creative=399373&creativeASIN=0470927623';
		}		
	}
	var f = '<a href="' + link + '" ' + additional + ' >' + body + '</a>';
	document.write(f);
}

function writeBookCode(book, indiaStr) {
	writeBookCode(book, indiaStr, true);
}

function writeBookCode(book, indiaStr, showborder) {
	var india = indiaStr == "True" ? true : false;
	var borderstr = showborder == true ? "&border=yes" : "";
	var borderstr_amzn = showborder == true ? "000000" : "FFFFFF";
	if (book == "ctci") {
		if (india) {
			document.write('<iframe src="http://www.flipkart.com/affiliateWidget/simpleBanner?bc=FFFFFF&tc=333333&lc=091670&buy=yes&affid=supportcar&id=ACX3FWPS4C&type=3&price=yes' + borderstr + '&height=260&width=120" style="width:120px;height:260px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>');
		} else {
			document.write('<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=' + borderstr_amzn + '&IS2=1&nou=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=care01-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=098478280X" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>')
		}
	} else if (book == "tgr") {
		if (india) {
			document.write('<iframe src="http://www.flipkart.com/affiliateWidget/simpleBanner?bc=FFFFFF&tc=333333&lc=091670&buy=yes&affid=supportcar&id=0XW3F9N15T&type=3&price=yes' + borderstr + '&height=260&width=120" style="width:120px;height:260px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>');
		} else {
			document.write('<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=' + borderstr_amzn + '&IS2=1&nou=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=care01-20&o=1&p=8&l=as4&m=amazon&f=ifr&ref=ss_til&asins=0470927623" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>');
		}		
	}
}

