function close_block(id) {
	document.getElementById(id).style.display = 'none';
	document.getElementById(id).style.top = null;
}

function open_block(id) {
	document.getElementById(id).style.display = 'block';
}

function recalc_basket() {
	$(".recalc_basket").each(function(i) {
		var e = jQuery(this).next('input'),
		old = e.val(),
		p = jQuery(this).prev('input'),
		id = p.val();
		e.val(this.value);
		frontEndBasket.modify(id, this.value, old);
	});
	setTimeout(function() { window.location.reload() }, 3000);
}


function search_focus(el) {
	$(el).children("input:first").focus();
}

function search_clear() {
	$('.search_string').attr('value','');
}

$(document).ready(function() {
	$('.seminar_button').click(function(){
		var offset = $(this).offset();
		var top = offset.top-250;
		open_block('win_reg');
		$('#win_reg').css('top',top+'px');
		document.getElementById('seminar_name').value=$(this).attr('namestr');
		document.getElementById('data').value=$(this).attr('datastr');
		document.getElementById('gorod_in').value=$(this).attr('gorodstr');
	});
	$('#link1').click(function(){
	win1=window.open("http://www.goodortho.ru/", "link1", "toolbar=yes,scrollbars=yes");
	});
	$('#link1').mouseover(function(){
	$(this).css("cursor", "pointer");
	});
	$('#link2').click(function(){
	win1=window.open("http://konfidencia.ru/", "link1", "toolbar=yes,scrollbars=yes");
	});
	$('#link2').mouseover(function(){
	$(this).css("cursor", "pointer");
	});	
});



