﻿// JScript File
// JScript for the employment confirm links for applying to GreatJobs.

function confirmLink(link)
{
 var where_to= confirm("You are now leaving the Texas Forest Service Website.\nAre you sure you want to continue?");
 if (where_to== true)
 {
   window.open(link);
 } 
}




