function trans(type,id){
	if(type=="L"){
		newwindow=window.open(id);
		newwindow.focus();
	}	
	if(type=="A"){
		newwindow=window.open(id,'audio');
		newwindow.focus();
	}	
	if(type=="V"){
		newwindow=window.open('/trans.php?tiVI='+id,'video');
		newwindow.focus();
	}	
}