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=540, resizable=no, menubar=no, location=no');
	return false;
}

function venenrace_popup(link) {
	window.open(link, 'Venenrace', 'width=600, height=460, resizable=yes, menubar=no, scrollbars=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() {
	window.history.forward(); 
}

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"
		});
	});

});
