function vacansia_open(id){
	var winTop = (screen.height / 2) - 300;
	var winLeft = (screen.width / 2) - 300;
	window.open('./full_vacansia.php?vacansia_id=' + id, 'editor_popup','width=700, height=600, left=' + winLeft + ', top=' + winTop + ',scrollbars=yes,resizable=yes,status=no');
	}
	
function resume_open(id){
	var winTop = (screen.height / 2) - 300;
	var winLeft = (screen.width / 2) - 300;
	window.open('./full_resume.php?resume_id=' + id, 'editor_popup','width=700, height=600, left=' + winLeft + ', top=' + winTop + ',scrollbars=yes,resizable=yes,status=no');
	}
