function $css2Width(dEl){
	dEl.runtimeStyle.behavior = 'none';
	
	
	
	dEl.onresize = function(){
		
		
		var nMinW = parseInt( this.currentStyle['min-width'] , 10 );	
		var nMaxW = parseInt( this.currentStyle['max-width'] , 10 );
		var ds = this.style;
		
		if(!ds.width){
			ds.width = 	 this.currentStyle['width'] ;
		}

		var nPixW = parseInt( ds.pixelWidth , 10 );
		if(  nMinW && (nPixW < nMinW) ) { ds.pixelWidth = nMinW }
		else if( nMaxW  && (nPixW > nMaxW) ){ ds.pixelWidth = nMaxW ; }
		
		document.title = 	ds.width ;
		
		
	};
    dEl.onresize();
}