$(document).ready(function(){
	$('.panel tbody tr:odd td + td').css('background-color','#f1ece8');
	$('.panel tbody tr:even td + td').css('background-color','#fff');
    $('.logo').fadeIn('slow');
});

function openWindow(_URL,_width,_height,_scrollbars) {
    var _left=(screen.availWidth/2)-(_width/2);
    var _top=(screen.availHeight/2)-(_height/2);
    window.open(_URL,"popupWindow","directories=no,menubar=no,location=no,resizable=yes,scrollbars="+_scrollbars+",status=no,toolbar=no,height="+_height+",width="+_width+",left="+_left+",top="+_top);
}
