$().ready( function(){

$strTable = $('.stripe tr:odd');

$strTable.addClass('alt');

$popUp = $('.popUp');
$popUp.click(function() {
	window.open($(this).attr('href'),'','width=425, height=445');
	return false;

})

});