
function Buy(id)
{
	window.location = '/popup/cart_add_book.php?id=' + id;
	return false;
}

try {
document.body.style.backgroundColor = '#DDD';
} catch(err) { ; }

function GetWindowHeight() {
	return window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
}

window.onload = function() {
	var el = document.getElementById('id_b_bc');
	var dh;
	var wh = GetWindowHeight();
	dh = el.offsetHeight - wh;
	window.resizeBy(0, dh+1);
	wh = GetWindowHeight();
	dh = el.offsetHeight - wh;
	window.resizeBy(0, dh+1);
	window.resizeBy(0, -1);
};

