In order to get the page height:
document.body.scrollHeight;
And in order to get the page width:
document.body.scrollWidth;
More comprehensive at Javascript Get Page Height With Scroll (Webdev Entry)
Original article in spanish: Javascript: Halllar las dimensiones de la página (altura y anchura)