/*-  Add stripes to all tables with a class of "listing"
----------------------------------------------------------------------*/
$(function() {
	$("table.listing tr:even").addClass("even");
});

/*-  Opens a new chat window
----------------------------------------------------------------------*/
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=550,width=550');
}
