$(document).ready(function() {
	$("span.resourcebox a, span.link a, .popup").click(function() { openFiles(this); return false;} );
	$(".stripeMe tr:even").addClass("alt");
	function openFiles(file) {
		var w = 990;
		var h = 700;
		if (navigator.platform.indexOf('mac') != -1) {
		 	var props = "menubar=yes,width="+w+",height="+h+",top=0,screenY=0,left=0,screenX=0,resizable=yes,scrollbars=yes";
		} else {
			var props = "width="+w+",height="+h+",top=0,screenY=0,left=0,screenX=0,resizable=yes,scrollbars=yes";
		}

		var myWin = window.open(file,"images",props);
		myWin.focus();
	}
});