﻿function launchPopup(url,winname,scroll,resize,w,h) {
	window.open(url,winname,'toolbars=0,scrollbars='+scroll+',statusbar=0,menubars=0,resizable='+resize+',width='+w+',height='+h+',left='+(screen.width/2 - w/2)+',top='+(screen.height/2 - h/2));
}

function launchProfile(src) {
	launchPopup(src.getAttribute('href'),'profile',1,0,500,350);
}

function disclaimer_popup(url, description) {
  flyout=window.open("/leave_site.aspx?dest=" + escape(url) + "&desc=" + escape(description), "popup", "width=450,height=400,menubar=no,toolbar=no,resizeable=no,status=no,scrollbars=no,center=1");
  flyout.focus();
}

$(document).ready(
	function() {

		// Open links with rel="external" in new window - like ye ole' target="_blank"
		$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});


		// Zebra-stripe data tables
		$(".content table tbody").each(function() {
			$(this).removeClass("odd even");
			$("tr:odd", this).addClass("odd");
			$("tr:even", this).addClass("even");
		});
	}
);
