function openF() {
var ww = screen.availWidth
var hh = screen.availHeight

	newwin = window.open('home.html','kandyland','width=' + ww + ',height=' + hh + ', left=0, top=0, scrollbars=yes, scrolling=no, fullscreen=no');

newwin.creator = self
	
}

function openV() {
var ww = 490;
var hh = 320;

	newwin = window.open('video.html','kandyland_video','width=' + ww + ',height=' + hh + ', left=0, top=0, scrollbars=yes, scrolling=no, fullscreen=no');

newwin.creator = self
	
}

function maxWindow()
{
window.moveTo(0 ,0);


if (document.all)
{
  top.window.resizeTo(screen.availWidth,screen.availHeight);
}

else if (document.layers||document.getElementById)
{
  if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
  {
    top.window.outerHeight = screen.availHeight;
    top.window.outerWidth = screen.availWidth;
  }
}
}

