function fireThumb(T){
	t = T;
	document.getElementById('bigThumb').src = 'thumbs/'+model+'_'+t+'_med.jpg';
	//document.getElementById('bigThumbLink').href = 'thumbs/'+model+'_'+t+'_med.jpg';
	document.getElementById('bigThumbLink').href = 'thumbs/'+model+'0'+t+'.jpg';
}


function launchThumb(t){
	window.open('thumbs.php?tub='+model+'&thumb='+t,'alpsThumb','width=380,height=240,address=no,location=no');
}


function addEvent( obj, type, fn ) { 	// http://ejohn.org/projects/flexible-javascript-events/
	if ( obj.attachEvent ) {
		obj['e'+type+fn] = fn;
		obj[type+fn] = function(){obj['e'+type+fn]( window.event );}
		obj.attachEvent('on'+type, obj[type+fn] );
	} else
		obj.addEventListener( type, fn, false );
}	