function MyGetHeight() {
  var myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myHeight = document.body.clientHeight;
  }
  return myHeight;
}
function MyGetWidth() {
  var myWidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
  }
  return myWidth;
}
var WindowHeight=MyGetHeight();
/* 
if($('content_left_wrapper').getHeight()<680 && $('content_right_wrapper').getHeight()<680 )
{
	$('content_container').style.height=WindowHeight+"px";
	$('content_wrapper_with_border').style.height=(WindowHeight-7)+"px";

	//$('content_left_wrapper').style.height=(WindowHeight-($('header_wrapper').getHeight()+70))+"px";
	 
	//$('content_right_wrapper').style.height=(WindowHeight-($('header_wrapper').getHeight()+70))+"px";
}
else
{
	
} */
$('content_left_wrapper').style.height=($('content_wrapper').getHeight()-76)+"px";   

