/*
 * tcode
 */

//on page load call TB_init

//jquery code
if( jQuery(document).ready )
{
	jQuery(document).ready(function(){jQuery("a").click(function(){t_send(this.href);});t_send(null);});
	jQuery(document).ready(function(){jQuery("input").click(function(){t_send(this.name);});t_send(null);});
}

function t_send(curBid){
	var tmpImg = new Image();
	tmpImg.src = baseDir+'t.php?sk='+sk+'&pid='+pid+'&bid='+curBid;
}