var delay_inq = 50;

function open_win(el){
	var width_win = screen.width/2 - 640/2;
	var height_win = screen.height/2 - 640/2;
	//alert(width_win + " " + height_win);
	if (height_win > 150) height_win -= 50;	
	var popupWin = window.open(el.href, 'как отвечали другие', 'location=no,width=640,height=640,toolbar=no,scrollbars=yes,resizable=yes,status=yes, left=' + width_win + ',top=' + height_win);	
	popupWin.focus();	
};

$(document).ready(function(){
	setTimeout("resize_block_bg();",delay_inq);
});

$(document).keypress(function(){
	setTimeout("resize_block_bg();",delay_inq);
});

$(document).click(function(){
	setTimeout("resize_block_bg();",delay_inq);
});

$(document).mousemove(function(){
	// setTimeout("resize_block_bg();",delay_inq);
});
	
// ресайзим блок	
function resize_block_bg(){
	var my_height = 0;//$('#modify001').height();
	//my_height -= 370;		
	//$('#modify001').css({'height':my_height+'px'});

	my_height = $('#modify00').height();
// NEW
	my_height -= 100;
	$('#main_content_00 img.resize').css({'height':my_height+'px'});

	if ( $.browser.msie && $.browser.version < 7 ) {
		$('#footer').css({'position':'relative'});
		$('#footer').css({'position':'absolute'});
	}
};

