var W_IE = (document.all); // Internet Explorer? | 
var W_NC = (document.layers); // Netscape? | 
var W_Opera = (document.getElementById); // Opera? | 

function W_getHeight() { // Получаем высоту рабочей области | браузера  
	if ( W_IE || W_Opera) send = document.body.clientHeight; 
	if ( W_NC ) send = window.innerHeight; 
	return send; 
	}

function W_getWidth() { // Получаем ширину рабочей области браузера 
	if ( W_IE || W_Opera) send = document.body.clientWidth; 
	if ( W_NC ) send = window.innerWidth; 
	return send;
	}
	
function WP_getWindowWidth( ) {
	return (ns4||ns5)? window.innerWidth-20+window.pageXOffset: document.body.clientWidth+document.body.scrollLeft;
	}

function WP_getWindowHeight( ) {
	return (ns4||ns5)? window.innerHeight-20+window.pageYOffset: document.body.clientHeight+document.body.scrollTop;
	}	