window.onload = function() {
    resizeTextArea();
}
window.onresize=function(){
    resizeTextArea();
}
function resizeTextArea(){
    var ta=document.getElementById("topImg");
    var myw=getBrowserWidth();

    if (getBrowserWidth() > 850) {
    var mycss="width:"+myw+"px;height:317px;";
    ta.style.cssText=mycss;
	} else {
    var mycss="width:850px;height:317px;";
    ta.style.cssText=mycss;
	}
}
function getBrowserWidth() {  
    if ( window.innerWidth ) {
        return window.innerWidth - 15; 
    } 
    else if ( document.documentElement && document.documentElement.clientWidth != 0 ) {
        return document.documentElement.clientWidth; 
    }
    else if ( document.body ) {
        return document.body.clientWidth;
    }
    return 0;  
}
