Or, by using the more standardised method using CSS:
code:
<head>
...
<style type="text/css">
html, body {
overflow: hidden;
}
</style>
...
</head>
It's more recommended to use the above method, as
<body scroll="no"> is deprecated and only recognised by Internet Explorer. This might not sound as a problem, as Plus! uses an InternetExplorer object, but it's better to use standards to make your web page validate the W3C (X)HTML standards, to make it compatible with other browsers and to make it "future-proof".