var popup = function(url){	
	var tac = window.open(url, 'Terms', 'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=1,height=600,width=500');
	tac.moveTo((window.innerWidth/2 - 250), ((window.innerHeight/2) - 300));
	tac.onblur = function(){
		tac.close();	
	}
	return void(0);
}

$(function() {
	var pageHeight = $(window).height();  	
  	if ($(window).height() < 640) {
  		$('body').css('height', '640px');  	
  	} else {
  		$('body').css('height', '100%');  		
  	}
  	$(window).resize(function() {	  
	 if ($(window).height() < 640) {
  		$('body').css('height', '640px');
  	} else {
  		$('body').css('height', '100%');  		
  	}
	});
	$(window).scroll(function() {	 	  
	 if ($(window).height() < 640) {
  		$('body').css('height', '640px');
  	} else {
  		$('body').css('height', '100%');  		
  	}
	});
});
