

var frameList = Array('countrydivcontainer');

/////////////////////////////////////////////////////
////////// SCREEN SIZING AND RESIZING
/////////////////////////////////////////////////////
	function getWinHeight() {
		if (parseInt(navigator.appVersion)>3) {
			if (navigator.appName=="Netscape") {
				winW = window.innerWidth;
				winH = window.innerHeight;
			}
			if (navigator.appName.indexOf("Microsoft")!=-1) {
				winW = document.body.offsetWidth;
				winH = document.body.offsetHeight;
			}
		}
		
		return winH;
	}
	/////////////////////////////////////////////////
	function setHeight(obj) {
		var topOffset = 95;
		var thisObj = document.getElementById(obj);
		var currentHeight = getWinHeight();
		
	 	thisObj.style.height = currentHeight - topOffset - 20;
	 	
	}
	/////////////////////////////////////////////////
	function swapStyle() {
		for (var i=0;i<frameList.length;i++) {
			var thisObj = document.getElementById(frameList[i] + '_frame');
			thisObj.style.overflow = 'no';
			thisObj.style.overflow = 'yes';
			thisObj.style.overflow = 'auto';
		}
	}
	////////////////////////////////////////////////
	function resizeAll() {
		for (var i=0;i<frameList.length;i++) {
		//	setHeight(frameList[i]);
		}
	
	}
		

	
	
	
	
	
