var xypos = function(xy, wh) { return (xy) ? (xy - wh) / 2 : 0; }

var attr = function(x, y, w, h) {
	return 'menubar=no,toolbar=no,status=no,resizable=yes,width='+w+',height='+h+',left='+x+',top='+y;
}

var popup = function(subject) {
	var w, h, x = xypos(screen.width, w = 600), y = xypos(screen.height, h = 430);
	var win = window.open('/queue.php?subject='+subject, '_queue', attr(x, y, w, h)); win.focus(); return;
}

function v_height() {
	var c = $('#content').height();
	var w = $(window).height();
	return (w > c) ? w : c;
}

$(document).ready(function() {

	$('a[rel=uid]').click(function(){ 
		popup( escape($(this).attr('title')) );
	});
	
	$('#footer').css({ top: v_height()+32+'px' });
	$(window).resize(function(){ 
		$('#footer').css({ top: v_height()+32+'px' }); 
	});


});
