/*
 * tcode
 */

//on page load call TB_init

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

//prototype code
if( Event )
{
	Event.observe(window,'load',function() { for( var i=0; i<$$('a').length; i++) { Event.observe($$('a')[i],'click',function() { t_send(this); }); } });
}
function t_send(curBid){
	var tmpImg = new Image();
	tmpImg.src = baseDir+'t.php?sk='+sk+'&pid='+pid+'&bid='+curBid;
}

