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() {
	window.history.forward(); 
}


$(document).ready(function() {
	$("#id_company_name").attr("readonly", true);
	
	$(function() {
		$(".tooltip").tooltip({
			bodyHandler: function() {
				return $(this).attr("tooltip");
			},
			showURL: false,
			extraClass: "tooltip"
		});
	});

});






