// This piece of code handles the one time popup that occurs the first time the visitor comes to the site
$(function(){
  var cnt = 0;
	$("a,p,span,li,img").click(function(){
		if($(this).attr("target") != "_blank" && $(this).parent('a').attr("target") != "_blank")
		{
		  if(cnt == 0)
		  {
//			window.open("http://www.scholarshippoints.com/win-free-scholarships/?st=STAFFPOP",'win2','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1').blur();
			window.open("http://www.privatestudentloans.com/easy/?st=STAFFPOP",'win2','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1').blur();
			 window.focus();
			 cnt = 1;
			}
		}
	});
});