/*

general JS functions

depends on: jQuery
used by   : all HTML pages

*/

$(document).ready(function(){

	$("a[rel='popup']").live('click', function(){
		window.open($(this).attr("href"), 'tnc', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450 height=600');
		return false;
	});

});
