// JavaScript Document

<!--
$(document).ready(function(){

$(".jot2").click(function(){
	window.open('/JoinOurTeamPositions/657/n/3/0/0/', "Positions", "toolbar=0, menubar=0, location=0, status=0, scrollbars=1, left=100, top=100, height = 750, width = 700, resizable = 0" );
});

$(".jot3").click(function(){
	window.open('/JoinOurTeamStatus/658/n/3/0/0/', "Status", "toolbar=0, menubar=0, location=0, status=0, scrollbars=0, left=100, top=100, height = 750, width = 700, resizable = 0" );
});

$(".jot6").click(function(){
var location = $(this).prevAll(".jot1").html();
var position = $(this).prevAll(".jot2").html();
var status = $(this).prevAll(".jot3").html();
var jobID = $(this).prevAll(".jot4").html();
var eml = $(this).prevAll(".jot5").html();
var applyLink = '/ftproot/apply2.htm?loc=' + location + '&pos=' + position + '&sta=' + status  + '&id=' + jobID  + '&eml=' + eml;
window.location = applyLink ;
});

});

function jotPositionsPopup (url) {
	window.open( url, "Positions", "toolbar=0, menubar=0, location=0, status=0, scrollbars=0, left=100, top=100, height = 750, width = 700, resizable = 0" );
  }
-->