function vpWidth() {
return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
}
function vpHeight() {
return window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
}