﻿function supersizeWin() {
	screenWidth = screen.availWidth;
	screenHeight = screen.availHeight;
	
	browser=navigator.userAgent;
	if ((browser.indexOf("MSIE")!=-1)) {
		width = screenWidth - 12;
		height = screenHeight - 40;
	} else {
		width = screenWidth;
		height = screenHeight;
	}
	window.open("","Supersize","width=" + width + ",height=" + height + ",left=0,top=0,location=no,menubar=noscrollbars=auto,status=no,toolbar=no,resizable=yes");
	return false;}
