

/*
function popup(winURL){window.open(winURL,"popup","statusbar=0, menubar=0,resizable=yes,scrollbars=yes, location=yes");}
$(function(){$(".pdf").click(function(){popup($(this).attr('href'));return false;});$(".beta").click(function(){$(this).hide("slow");});$(".striper tr:odd").addClass("altrow");});

//The following in not in the version uploaded to the server. The following has been minified at: http://fmarcia.info/jsmin/test.html
*/
function popup(winURL) {
	window.open(winURL, "popup", "statusbar=0, menubar=0,resizable=yes,scrollbars=yes, location=yes");	
}

$(function () { // same as $(document).ready(function () { })
	//opens all .pdf class links in a pop up
	$(".pdf").click( function() {
        popup( $(this).attr('href') );
        return false;
    });
	
	//hides all .beta class links when clicked
  	$(".beta").click(function(){
    	$(this).hide("slow");
  	});
  
	//stripe all .striper tables
	$(".striper tr:odd").addClass("altrow");
});
