function divset() {

   w = 0;

   if (document.body.clientWidth) {
	  w = document.body.clientWidth;
   } else if (window.innerWidth) {
	  w = window.innerWidth;
   }
   
   if (w >= 950) {
	  if (document.layers) {
		  document.layers['carreorange'].style.display = 'block';
	  } else if (document.getElementById) {
		  document.getElementById('carreorange').style.display = 'block';
	  }	  
   }
   
}