//- Instinct_Detect : W3 -//
function Instinct_Detect_W3(oDetect) {
//- Model - Initialize -//

//- Model - Link -//
	oDetect.getPageWidth = getPageWidth; 
	oDetect.getPageHeight = getPageHeight;
	oDetect.getPageScrollx = getPageScrollX;
	oDetect.getPageScrollY = getPageScrollY;
	oDetect.getWindowWidth = getWindowWidth;
	oDetect.getWindowHeight = getWindowHeight;		

//- Model - Implementation -//
	function getPageWidth() {
		return(document.body.scrollWidth);
	}

	function getPageHeight() {
		return(document.body.scrollHeight);
	}
	
	function getPageScrollX() {
		return(document.body.scrollLeft);
	}

	function getPageScrollY() {
		return(document.body.scrollTop);
	}

	function getWindowWidth() {
		return(document.body.clientWidth);
	}

	function getWindowHeight() {
		return(document.body.clientHeight);
	}
}
