I'm developing a simple Kiosk style html site to run in a browser window whch has been made to fill the whole screen with nothing showing, no sartbar, toolbars, scrollbars, etc.
I have found one script (see below) that works great except it still shows the scrollbars in IE6, even though there is no need for scrollbars as the page contents do not go beyond the screen. Does anybody know how I could edit this script to make the scrollbars disapear completeley? I've tried removing the 'scrollbars' text, using 'noscrollbars' in the script and have had no luck yet.
Thanks for any help.
The script I found:
<script>
<!--
function fullwin(targeturl){
window.open(targeturl,"","fullscreen,scrollbars"
}
//-->
</script>
<form>
<input type="button" onClick="fullwin('ProjectVisualisationPanoramicMap.htm')" value="Start Presentation">
</form>
I have found one script (see below) that works great except it still shows the scrollbars in IE6, even though there is no need for scrollbars as the page contents do not go beyond the screen. Does anybody know how I could edit this script to make the scrollbars disapear completeley? I've tried removing the 'scrollbars' text, using 'noscrollbars' in the script and have had no luck yet.
Thanks for any help.
The script I found:
<script>
<!--
function fullwin(targeturl){
window.open(targeturl,"","fullscreen,scrollbars"
}
//-->
</script>
<form>
<input type="button" onClick="fullwin('ProjectVisualisationPanoramicMap.htm')" value="Start Presentation">
</form>