function setheight() {
$(document).ready(function() {
	 $('#one') .css({'height': (($(window).height()) - 119)+'px'});
	
	 $('#uno') .css({'height': (($(window).height()) - 119)+'px'});
});
}

function setwidth(){


if ($('frame[name=content]', parent).length) {	
	 $('#uno') .css({'width': (($(window).width()) - 171)+'px'});
	 	
    }
	 else {
	 	$('#uno') .css({'width': (($(window).width()) - 4)+'px'});
	 }
}

function move() {

if ($('frame[name=content]', parent).length) {
    $(window).resize(function(){
        $('#one') .css({'height': (($(window).height()) - 119)+'px'});
    });
     $(window).resize(function(){
        $('#uno') .css({'height': (($(window).height()) - 119)+'px'});
   });
   $(window).resize(function(){
   		$('#uno') .css({'width': (($(window).width()) - 171)+'px'});
   		});
	}
	else {
   	$(window).resize(function(){
   		$('#one') .css({'height': (($(window).height()) - 119)+'px'});
    });
     $(window).resize(function(){
        $('#uno') .css({'height': (($(window).height()) - 119)+'px'});
   });
   $(window).resize(function(){
   		$('#uno') .css({'width': (($(window).width()) - 4)+'px'});
   		});
	}
    }
    
    
