- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
var BrowseWidth = 0;
var BrowseHeight = 0;
function getInsideBrowse()
{
var ns = navigator.appName == "Netscape";
if (ns)
{
BrowseWidth = window.innerWidth;
BrowseHeight = window.innerHeight;
}
else
{
BrowseWidth = document.body.clientWidth;
BrowseHeight = document.body.clientHeight;
}
}
function browser_dimensions()
{
getInsideBrowse();
document.vicidial_form.JS_browser_width.value = BrowseWidth;
document.vicidial_form.JS_browser_height.value = BrowseHeight;
}
RaZeR 21.03.2011 14:35 # 0
Ты избранный!