var FtpWebClientViewer = {

	init:function() {
		if ($('.online-now').size() == 0) return;
		
		$('a.online-show-client').click(function(event) {
			event.preventDefault(); 
			var href=$(".online-show-client").attr('href');
			window.open(href,'ftpwebpoker','menubar=0,location=0,toolbar=0,width=px,height=px');
		});
    }
}

$(document).ready(function(){ FtpWebClientViewer.init(); });

