$(document).ready(function(){
	$('a[class="popup"]').click(function(){
		var tid = $(this).attr('id');
		window.open("message.php?tid="+tid, "Messages", "width=500,height=400,top=200,left=200");
		return false;
	});
	$('a[class="popup_kiss"]').click(function(){
		var tid = $(this).attr('id');
		window.open("kiss.php?tid="+tid, "Kiss", "width=500,height=400,top=200,left=200");
		return false;
	});
});
