Function (){
Document. Write (
"Screen Resolution:" + screen. Width + "*" + screen. Height
+ "<Br/>" +
"Available screen size:" + screen. availwidth + "*" + screen. availheight
+ "<Br/>" +
"Visible area width of the webpage:" + document. Body. clientwidth
+ "<Br/>" +
"Visible area Height:" + document. Body. clientheight
+ "<Br/>" +
"Visible area width of the webpage (including the width of the edge):" + document. Body. offsetwidth
+ "<Br/>" +
"Visible area height (including edge width):" + document. Body. offsetheight
+ "<Br/>" +
"Webpage text width:" + document. Body. scrollwidth
+ "<Br/>" +
"Webpage text Height:" + document. Body. scrollheight
+ "<Br/>" +
"Webpage volume Height:" + document. Body. scrolltop
+ "<Br/>" +
"Left of the webpage to be rolled:" + document. Body. scrollleft
+ "<Br/>" +
"Webpage body part:" + window. screentop
+ "<Br/>" +
"Webpage body part left:" + window. screenleft
+ "<Br/>" +
"Screen Resolution Height:" + window. Screen. Height
+ "<Br/>" +
"Screen Resolution width:" + window. Screen. Width
+ "<Br/>" +
"Available screen workspace Height:" + window. Screen. availheight
+ "<Br/>" +
"Available screen workspace width:" + window. Screen. availwidth
);
}