/* =============================================================================== */
/* Name: fullscreen */
/* Function: this is going to cause IE to go into a kind of fullscreen mode */
/* Call: fullscreen() */
/* Supported Browsers: IE5.x,IE6.x */
/* Author: Dimitris Anoyatis */
/* E-Mail(s):[email protected],[email protected] */
/* Version: 1.0.2 */
/* Status: Freeware (Actually Mentionware; just mention me on your webpage) */
/* Requirements: Just keep this with the script please... Not 2 much 2 ask is it? */
/* */
/* Hope you find this script useful :) */
/* =============================================================================== */
function fullscreen(){
var hdiff;
window.moveTo(-4,-4);
window.resizeTo(screen.width,screen.height);
hdiff=window.screenTop;
window.moveTo(-6,-hdiff-7);
window.resizeTo(screen.width+13,screen.height+hdiff+35)
}