function checkDiv(checkedagain){
	if (typeof(window.innerHeight) == 'number') {
		win_height = window.innerHeight;
		win_width = window.innerWidth;
	}	else {
		if (document.documentElement && document.documentElement.clientHeight) {
			win_height = document.documentElement.clientHeight;
			win_width = document.documentElement.clientWidth;
		}	else {
			if (document.body && document.body.clientHeight) {
				win_height = document.body.clientHeight;
				win_width = document.body.clientWidth;
			}
		}
	}
	if (document.all) {
		doc_height = document.body.offsetHeight;
		doc_width = document.getElementById('').offsetWidth;
	} else if (document.layers) {
		doc_height = document.body.document.height;
		doc_width = document.getElementById('').width;
	} else {
		doc_height = document.body.offsetHeight;
		doc_width = document.getElementById('').offsetWidth;
	}
	if(doc_width>win_width){
		//document.body.style.width = doc_width+"px";
		//document.getElementById('').style.left = doc_width+"px";
	} else {
		//document.body.style.width = win_width+"px";
		//document.getElementById('').style.left = win_width+"px";
	}
	if(doc_height>win_height){
		//document.body.style.height = doc_height+"px";
		//document.getElementById('').style.top = doc_height+"px";
	} else {
		//document.body.style.height = win_height+"px";
		//document.getElementById('').style.top = win_height+"px";
	}
	if(!checkedagain){
		checkDiv(true);
	}
}
