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;
	}
	var elem_height=0;
	var elem_width=0;
	if (document.all) {
		doc_height = document.body.offsetHeight;
		if(document.getElementById('ConstContact')){
			elem_height = document.getElementById('ConstContact').offsetHeight;
			elem_width = document.getElementById('ConstContact').offsetWidth;
		}
	} else if (document.layers) {
		doc_height = document.body.document.height;
		if(document.getElementById('ConstContact')){
			elem_height = document.getElementById('ConstContact').height;
			elem_width = document.getElementById('ConstContact').width;
		}
	} else {
		doc_height = document.body.offsetHeight;
		if(document.getElementById('ConstContact')){
			elem_height = document.getElementById('ConstContact').offsetHeight;
			elem_width = document.getElementById('ConstContact').offsetWidth;
		}
	}
	if(win_height<700){
		document.body.style.height = "700px";
		document.getElementById('Flash_Div').style.height = "700px";
	} else {
		document.body.style.height = win_height+"px";
		document.getElementById('Flash_Div').style.height = win_height+"px";
	}
	if(win_width<899){
		document.body.style.width = "899px";
	} else {
		document.body.style.width = win_width+"px";
	}
	if(!checkedagain){
		checkDiv(true);
	}
}