$(document).ready(function(){

var height= $(window).height();
//<D-c>height=900;

if (height > 600){

 $(".principal").height(height);
//  $(".alto").height(height-230);
// $(".informacion").height(height-270);

}


if (height < 600){
$(".principal").height(600);
}
 } );

