It has very little to do with the message size, much to do with frequency.
Every time you poll, the phone must use its network - basically, its radio. If you send a large message, it may use the radio for slightly longer (but probably not enough to matter). If you're sending incredibly large messages, this will start to have a larger impact - but you aren't polling incredibly large messages, right?
However, polling frequently - even small messages - causes severe battery drains in phones. Different phones respond differently... be particularly careful with Android, which in some hardware/software combinations will allow you to poll even when backgrounded.
We had good success (also building in HTML5) by detecting interaction with the page (all touch events) and gradually delaying our polls when the page had been untouched for some time. Eg, ontouch, poll = 3s. Next poll = 4s. Next poll = 5s... and so on.