// JavaScript Document
function fResize() {
	if (document.body.clientHeight) {
    var h = document.body.clientHeight;
    var w = document.body.clientWidth;
	}
	if (window.innerHeight) {
		var h = window.innerHeight;
    var w = window.innerWidth;
	}
	var main = document.getElementById("main");
	if (h < 316){
		main.style.height = '60px';
	}else{
		main.style.height = h - 257 + 'px';
	}
	if (w < 949){
		//document.getElementById("output").style.paddingRight = '2px';
		//alert(w);
	}else{
		//document.getElementById("output").style.paddingRight = '1px';//alert(w);
	}
}
function fOver(i){
	var over = document.getElementById("over_" + i);
	over.style.backgroundColor = '#F8EDDC';
	over.style.borderColor = '#F8EDDC';
}
function fOut(i){
	var out = document.getElementById("over_" + i);
	out.style.backgroundColor = '#F4E1C4';
	out.style.borderColor = '#CCC';
}
