	function sizeBox()
	{
		var w = $(window).width();	
		var h = $(window).height();
		if (h < 570)
		{
			$('#container').css('height','570px');
		}
		else
			$('#container').css('height','100%');		
			
		if (w < 1024)
			$('#container').css('width','1024px');
		else
			$('#container').css('width','100%');		
	}
	
	function sizeMainBox() {
		var w = $(window).width();
		var h = $(window).height();
		$('#main').css('position', 'absolute');
		if (h > 600)
			$('#main').css('top', h/2-($('#main').height()/2)+30);
		else
			$('#main').css('top', h/2-($('#main').height()/2)+60);
		$('#main').css('left', w/2-($('#main').width()/2));
	}

	
