$(document).ready(function() {
	$("span.resourcebox a, span.link a").click(function() { openFiles(this, this.rel); return false;} );
	$("a img").noContext();
	function openFiles(file, rel) {		
		if(rel == "winbig") 
		{
			var w = screen.availWidth;
		}
		else
		{
			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, "_blank", props, true);
		myWin.focus();
	}
});