function openPopUp(element, window_name) {
	window.open(element.href, window_name, 'menubar=no, resizable=yes, scrollbars=yes, width=500, height=500');
	return false;
}

function hrefPopUp(element) {
	opener.location.href = element.href;
	window.close();
	return false;
}

function schooling_film_popup(link) {
	window.open(link, 'schoolingfilm', 'width=960, height=640, resizable=no, menubar=no, location=no');
	return false;
}


function chooseCompany(number, name) {
	$("#id_company_number", opener.document).attr("value", number);
	$("#id_company_name", opener.document).attr("value", name);
	window.close();
}


function disableBackButton() {
	$.history.init(callback);
    $("a[@rel='history']").click(function(){
        $.history.load(this.href.replace(/^.*#/, ''));
        return false;
    }); 
}


var clicked = false;
$(document).ready(function() {
	$("#id_company_name").attr("readonly", true);
	
	$("#shop_order").click(function(e){
		e.preventDefault();
		if(!clicked){
			clicked = true;
			$.get("/shop/order/", function(data){
				window.location.href="/shop/order/successful/";
			}).error(function(){
				window.location.href="/500/";
			});
		}
	});
	
	$(function() {
		$(".tooltip").tooltip({
			bodyHandler: function() {
				return $(this).attr("tooltip");
			},
			showURL: false,
			extraClass: "tooltip"
		});
	});

});







