function ElmHeight(elmID) {
	if(document.getElementById(elmID).clientHeight) {
		return document.getElementById(elmID).clientHeight;
	} else {
		if(document.getElementById(elmID).offsetHeight) {
			return document.getElementById(elmID).offsetHeight;
		}
	}
}

function SetHeight(){
	//Get Screen Height By Remco Koemans
	if (self.innerHeight){
 		y = self.innerHeight;
	}else if(document.documentElement && document.documentElement.clientHeight){
		y = document.documentElement.clientHeight;
	}else if(document.body){
		y = document.body.clientHeight;
	}
	y = parseFloat(y);
	x = ElmHeight('content');
	x = parseFloat(x);
	
	if (y < x+280){
		newY = x+280;
	}else{
		newY = y
		
	}

	document.getElementById('container').style.height = newY+'px';
	document.getElementById('content').style.height = newY-280+'px';
	
	//setTimeout('SetHeight()',1000);
	
 }
