// ***************************************************
// Browser Detection
// Description: Sets true or false for a browser type
// Returns: N/A
// ***************************************************
NS4 = (document.layers) ? true : false;
IE4 = (document.all && !document.getElementById) ? true : false;
IE5 = (document.all && document.getElementById) ? true : false;
NS6 = (!document.all && document.getElementById) ? true : false;

// ****************************************************
// Get Width and Height of the users browser
// Description: Sets winW and winH to the inside values
// Returns: N/A
// ****************************************************
if(document.all){
	winW = document.body.clientWidth;
    winH = document.body.clientHeight;
}else{
	winW = innerWidth;
    winH = innerHeight;
}
