$(function(){
	$('.fullmode').click(function(){
		window.open(this.href, 'fullmode','directions=0','location=0','menubar=0','scrollbars=0','status=0','toolbar=0','resizable=0');
		return false;
	});
	$('#windowmode').click(function(){
		window.open(this.href, 'windowmode','directions=0','location=0','menubar=0','scrollbars=0','status=0','toolbar=0','resizable=0');
		return false;
	});
});

