function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  win = window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  win.focus();
}

var version = 1.0;
version = 1.1;

function start() {
	if (window.screen.availWidth>800 && window.screen.availHeight>600) {
		width="780";
		height="485";
		scrollbars="no";
	} else {
		width="780";
		height="485";
		scrollbars="yes";
	}
	win=window.open("../swf/microsite/web.html","web","dependent=yes, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollbars+",resizable=no,copyhistory=no,width=" +width+",height="+height);
	win.moveTo(screen.width/2-width/2,screen.height/2-height/2);
	if(version > 1.0)
        {
        setTimeout('win.focus();',100);
        }

}

("window.screen.height="+window.screen.height+"<br>");
("window.screen.width="+window.screen.width+"<br>");
("window.screen.availHeight="+window.screen.availHeight+"<br>");
("window.screen.availWidth="+window.screen.availWidth+"<br>");

